getxControllerContent property
Template for the lib/controllers/counter_controller.dart file when using GetX.
Implementation
static String getxControllerContent = '''
import 'package:get/get.dart';
class CounterController extends GetxController {
final count = 0.obs;
void increment() {
count.value++;
}
}
''';