Business Login Flutter Apps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
380 B

  1. part of 'backup_bloc.dart';
  2. abstract class BackupState extends Equatable {
  3. const BackupState();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class BackupInitial extends BackupState {}
  8. class BackupLoading extends BackupState {}
  9. class BackupFinish extends BackupState{
  10. const BackupFinish({this.success=false,required this.msg});
  11. final bool success;
  12. final String msg;
  13. }