initPaymentSession method

Future<Map<String, dynamic>?> initPaymentSession(
  1. Map<String, dynamic> params
)

Initializes the payment sheet with the provided params.

Throws an UnimplementedError if the method is not implemented.

Implementation

Future<Map<String, dynamic>?> initPaymentSession(
    Map<String, dynamic> params) {
  throw UnimplementedError('initPaymentSheet() has not been implemented.');
}