content property

  1. @override
String get content
override

Store the content that will be written to the file in a String or Future

Implementation

@override
String get content => '''$import


abstract class BaseController<S extends BaseState> extends StateNotifier<S>
  with LocatorMixin {
BaseController(S state) : super(state);

Future<ErrorEntity?> loadData();

Future<void> reload() async {}
}
''';