10 lines
289 B
Dart
10 lines
289 B
Dart
|
|
part of 'refund_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class RefundState with _$RefundState {
|
||
|
|
const factory RefundState.initial() = _Initial;
|
||
|
|
const factory RefundState.loading() = _Loading;
|
||
|
|
const factory RefundState.success() = _Success;
|
||
|
|
const factory RefundState.error(String message) = _Error;
|
||
|
|
}
|