Data.fromJson constructor

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

Implementation

Data.fromJson(Map<String, dynamic> json) {
  regID = json['RegID'];
  profileTypeID = json['ProfileTypeID'];
  regDt = json['RegDt'];
  regName = json['RegName'];
  regGUID = json['RegGUID'];
  rSNID = json['RSNID'];
  statusID = json['StatusID'];
  userID = json['UserID'];
}