flutterController property

String flutterController

Implementation

String get flutterController => '''import 'package:get/get.dart';

class ${_fileName.pascalCase}Controller extends GetxController {
//TODO: Implement ${_fileName.pascalCase}Controller

final count = 0.obs;
@override
void onInit() {
  super.onInit();
}
@override
void onReady() {
  super.onReady();
}
@override
void onClose() {
  super.onClose();
}
void increment() => count.value++;
}
''';