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 'get_unit_bloc.dart';
-
- abstract class GetUnitState extends Equatable {
- const GetUnitState();
- @override
- List<Object> get props => [];
- }
-
- class GetUnitInitial extends GetUnitState{}
-
- class GetUnitLoading extends GetUnitState{
- const GetUnitLoading({required this.percent});
- final double percent;
- @override
- List<Object> get props => [percent];
- }
-
- class GetUnitFinish extends GetUnitState{
- const GetUnitFinish({required this.respond, this.success=true});
- final String respond;
- final bool success;
- }
|