content property
Yuriy: changed to GetX5 Binding replaced lazyPut with put
Implementation
@override
String get content => '''$_import
import 'package:${PubspecUtils.projectName}/$_controllerDir';
class $_bindingName extends Binding {
@override
List<Bind> dependencies() {
return [
Bind.put<${_fileName.pascalCase}Controller>(
${_fileName.pascalCase}Controller(),
)
];
}
}
''';