PaymentFrameModel.fromJson constructor Null safety

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

Implementation

factory PaymentFrameModel.fromJson(Map<String, dynamic> json) =>
    PaymentFrameModel(
      code: json["code"],
      referenceCode: json["referenceCode"],
      frame: json["frame"],
      domain: json["domain"],
      confirmationPage: json["confirmationPage"],
      rejectionPage: json["rejectionPage"],
      paymentUrl: json["paymentURL"],
      browser: json["browser"],
    );