toJson method
Converts this ApplePayConfiguration into a JSON map.
Implementation
Map<String, dynamic> toJson() {
return {
if (collectibleBillingData != null)
'collectibleBillingData':
collectibleBillingData!.map((e) => e.toJson()).toList(),
'merchantDisplayName': merchantDisplayName,
};
}