10 lines
289 B
Dart
Raw Normal View History

2025-08-04 23:13:52 +07:00
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;
}