cubitTemplate property
Template for the lib/cubits/counter_cubit.dart file when using BLoC.
Implementation
static String cubitTemplate = '''
import 'package:flutter_bloc/flutter_bloc.dart';
class CounterCubit extends Cubit<int> {
CounterCubit() : super(0);
void increment() {
emit(state + 1);
}
}
''';