Table.fromJson constructor

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

Implementation

Table.fromJson(Map<String, dynamic> json) {
  iD = json['ID'];
  name = json['Name'];
  merchantName = json['MerchantName'];
  merchantAddress = json['MerchantAddress'];
  merchantEmailID = json['MerchantEmailID'];
  merchantMobilenumber = json['MerchantMobilenumber'];
  merchantStatus = json['MerchantStatus'];
  merchantCreatedBy = json['MerchantCreatedBy'];
  merchantEditedBy = json['MerchantEditedBy'];
  merchantLocation = json['MerchantLocation'];
  sendSMSForTxn = json['SendSMSForTxn'];
  merchantPAN = json['MerchantPAN'];
  sendEmailforTransaction = json['SendEmailforTransaction'];
  departmentID = json['DepartmentID'];
  schemeID = json['SchemeID'];
  merchantID = json['MerchantID'];
  centerID = json['CenterID'];
  category = json['Category'];
  retailMerchant = json['RetailMerchant'];
  govtMerchant = json['GovtMerchant'];
  chargesConfigured = json['ChargesConfigured'];
  charges = json['Charges'];
  foodCategory = json['FoodCategory'];
  bankName = json['Bank_Name'];
  accountNumber = json['Account_Number'];
  branchName = json['Branch_Name'];
  iFSCCode = json['IFSC_Code'];
  isPrefundedMerchant = json['IsPrefundedMerchant'];
  bTCatogoryName = json['BTCatogoryName'];
  requestID = json['RequestID'];
  sSOID = json['SSOID'];
  departmentName = json['DepartmentName'];
  schemeName = json['SchemeName'];
  debitBTID = json['DebitBTID'];
}