initializePaymentSheet method
- PaymentSheetConfiguration configuration
Validates and stores configuration for the next presentation.
This method does not perform the Checkout network request.
Implementation
Future<void> initializePaymentSheet(
PaymentSheetConfiguration configuration,
) async {
await _channel.invokeMethod<void>(
'initializePaymentSheet',
configuration.toJson(),
);
}