initCustomerSheet method
Initializes the customer sheet with the provided parameters.
Throws a StripeException if initialization fails.
Implementation
Future<void> initCustomerSheet({
required CustomerSheetInitParams customerSheetInitParams,
}) async {
await _awaitForSettings();
await _platform.initCustomerSheet(customerSheetInitParams);
}