7 lines
198 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'discount_bloc.dart';
@freezed
class DiscountEvent with _$DiscountEvent {
const factory DiscountEvent.started() = _Started;
const factory DiscountEvent.getDiscounts() = _GetDiscounts;
}