toString method

  1. @override
String toString ()
override

Returns a string representation of this object.

Implementation

@override
String toString() {
  return '''
Error: Could not find the correct EasyState<$valueType> above this $widgetType Widget

To fix, please:

* Ensure the EasyState<$valueType> is an ancestor to this $widgetType Widget
* Provide types to EasyState<$valueType>
* Provide types to Store<$valueType>
* Provide types to EasyState.of<$valueType>()
* Always use package imports. Ex: `import 'package:my_app/my_code.dart';
* Ensure the correct `context` is being used.

If none of these solutions work, please file a bug at:
https:
''';
}