flutter_paystack_plus: ^2.5.0
await FlutterPaystackPlus.openPaystackPopup(
customerEmail: state.email,
amount: state.amount,
reference: reference,
authorizationUrl: authUrl,
context: event.context,
onClosed: () {
emit(state.copyWith(
status: Status.failed,
message: 'Payment failed'
));
logger.i('@@@ PayStack Payment closed');
},
onSuccess: () async {
logger.i('@@@ PayStack Payment successful');
emit(state.copyWith(
status: Status.success,
message: 'Payment failed'
));
}
);
target_sdk_version=36
Flutter 3.41.5
Dart 3.11.3
When clicking the close button on the form it does not respond as well.
flutter_paystack_plus: ^2.5.0
target_sdk_version=36
Flutter 3.41.5
Dart 3.11.3
When clicking the close button on the form it does not respond as well.