While compiling the app, I am getting below errors:
/C:/Users/shubh/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_chips_input-2.0.0/lib/src/chips_input.dart:87:7: Error: The non-abstract class 'ChipsInputState' is missing implementations for these members:
- TextInputClient.didChangeInputControl
- TextInputClient.insertContent
- TextInputClient.performSelector
Try to either
- provide an implementation,
- inherit an implementation from a superclass or mixin,
- mark the class as abstract, or
- provide a 'noSuchMethod' implementation.
class ChipsInputState<T> extends State<ChipsInput<T>>
^^^^^^^^^^^^^^^
/C:/sdk/flutter/packages/flutter/lib/src/services/text_input.dart:1231:8: Context: 'TextInputClient.didChangeInputControl' is defined here.
void didChangeInputControl(TextInputControl? oldControl, TextInputControl? newControl) {}
^^^^^^^^^^^^^^^^^^^^^
/C:/sdk/flutter/packages/flutter/lib/src/services/text_input.dart:1185:8: Context: 'TextInputClient.insertContent' is defined here.
void insertContent(KeyboardInsertedContent content) {}
^^^^^^^^^^^^^
/C:/sdk/flutter/packages/flutter/lib/src/services/text_input.dart:1252:8: Context: 'TextInputClient.performSelector' is defined here.
void performSelector(String selectorName) {}
^^^^^^^^^^^^^^^
/C:/Users/shubh/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_chips_input-2.0.0/lib/src/chips_input.dart:437:37: Error: The getter 'subtitle1' isn't defined for the class 'TextTheme'.
- 'TextTheme' is from 'package:flutter/src/material/text_theme.dart' ('/C:/sdk/flutter/packages/flutter/lib/src/material/text_theme.dart').
Try correcting the name to the name of an existing getter, or defining a getter or field named 'subtitle1'.
theme.textTheme.subtitle1!.copyWith(height: 1.5),
^^^^^^^^^
While compiling the app, I am getting below errors:
Failed to compile application.