content property
Store the content that will be written to the file in a String or Future
Implementation
@override
String get content => '''$_import
import 'package:${PubspecUtils.projectName}/$_controllerDir';
class $_bindingName extends Binding {
@override
List<Bind> dependencies() {
return [
Bind.lazyPut<${_fileName.pascalCase}Controller>(
() => ${_fileName.pascalCase}Controller(),
),
];
}
}
''';