presentCustomerSheet method

Future<CustomerSheetResult?> presentCustomerSheet({
  1. CustomerSheetPresentParams? options,
})

Display the customersheet sheet. With the provided options.

Implementation

Future<CustomerSheetResult?> presentCustomerSheet({
  CustomerSheetPresentParams? options,
}) async {
  await _awaitForSettings();
  return _platform.presentCustomerSheet(options: options);
}