14 lines
353 B
Dart
14 lines
353 B
Dart
|
|
part of 'qris_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class QrisEvent with _$QrisEvent {
|
||
|
|
const factory QrisEvent.started() = _Started;
|
||
|
|
//generateQRCode
|
||
|
|
const factory QrisEvent.generateQRCode(String orderId, int grossAmount) =
|
||
|
|
_GenerateQRCode;
|
||
|
|
|
||
|
|
//checkPaymentStatus
|
||
|
|
const factory QrisEvent.checkPaymentStatus(String orderId) =
|
||
|
|
_CheckPaymentStatus;
|
||
|
|
}
|