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.
|
- part of 'backup_bloc.dart';
-
- abstract class BackupState extends Equatable {
- const BackupState();
- @override
- List<Object> get props => [];
- }
-
- class BackupInitial extends BackupState {}
-
- class BackupLoading extends BackupState {}
-
- class BackupFinish extends BackupState{
- const BackupFinish({this.success=false,required this.msg});
- final bool success;
- final String msg;
- }
|