CardOptionsSubmissionData.fromJson constructor
Implementation
factory CardOptionsSubmissionData.fromJson(Map<String, dynamic> json) =>
CardOptionsSubmissionData(
merchantId: json["merchant_id"] == null ? null : json["merchant_id"],
orderId: json["order_id"] == null ? null : json["order_id"],
);