Advertisement
rifki_cs29

ValidateLoginCubit

May 9th, 2023
909
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.20 KB | None | 0 0
  1. import 'package:module_dependencies/module_dependencies.dart';
  2.  
  3. class ValidateLoginCubit extends Cubit<bool> {
  4.   ValidateLoginCubit() : super(false);
  5.  
  6.   void update(bool value) {
  7.     emit(value);
  8.   }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement