toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'publishableKey': publishableKey,
    'clientSecret': clientSecret,
    'googlePay': googlePay?.toJson(),
    'configuration': configuration?.toJson(),
    'customParams': customParams,
    'hyperParams': hyperParams?.toJson(),
    'customBackendUrl': customBackendUrl,
    'customLogUrl': customLogUrl,
  };
}