Print.fromJson constructor

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

Implementation

factory Print.fromJson(Map<String, dynamic> json) => Print(
  base64image: json["base64image"],
  marchantname: json["marchantname"],
  datetime: json["datetime"],
  terminalid: json["terminalid"],
  serialno: json["serialno"],
  merchantid: json["merchantid"],
  transactiontype: json["transactiontype"],
  accountname: json["accountname"],
  businessaccountname: json["businessaccountname"],
  marchantaddress: json["marchantaddress"],
  deviceid: json["deviceid"],
  copytype: json["copytype"],
  rrn: json["rrn"],
  stan: json["stan"],
  pan: json["pan"],
  devicetype: json["devicetype"],
  paymentcode: json["paymentcode"],
  paymentname: json["paymentname"],
  phonenumber: json["phonenumber"],
  network: json["network"],
  description: json["description"],
  disco: json["disco"],
  meteraccname: json["meteraccname"],
  meterno: json["meterno"],
  token: json["token"],
  unit: json["unit"],
  address: json["address"],
  expiry: json["expiry"],
  accountnumber: json["accountnumber"],
  bank: json["bank"],
  businessaccountnumber: json["businessaccountnumber"],
  businessbank: json["businessbank"],
  sessionid: json["sessionid"],
  transactionstatus: json["transactionstatus"],
  responsecode: json["responsecode"],
  message: json["message"],
  appversion: json["appversion"],
  amount: json["amount"],
  bottommessage: json["bottommessage"],
);