CardOptionsSubmissionData.fromJson constructor

CardOptionsSubmissionData.fromJson(
  1. Map<String, dynamic> json
)

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"],
    );