toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'__typename': 'AdvancedCommerceItemIOS',
'details': details?.toJson(),
'refunds': refunds == null ? null : refunds!.map((e) => e.toJson()).toList(),
'revocationDate': revocationDate,
};
}