Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 82 Bytes

counter_cubit.dart.md

File metadata and controls

5 lines (5 loc) · 82 Bytes
class CounterCubit extends Cubit<int> {
  CounterCubit() : super(0);
}