Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
PFM-4087
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuldevgarg committed Oct 16, 2023
1 parent 93bdbce commit 3de2b20
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ class InactiveConsumerReportData {
this.inactiveDate, this.inactivatedByUuid, this.inactivatedByName);

InactiveConsumerReportData.fromJson(Map<String, dynamic> json) {
tenantName = json['tenantName'];
connectionNo = json['connectionno'];
status = json['status'];
tenantName = json['tenantName']??'';
connectionNo = json['connectionno']??'-';
status = json['status']??'-';
inactiveDate = json['inactiveDate'];
inactivatedByUuid = json['inactivatedByUuid'];
inactivatedByName = json['inactivatedByName'];
inactivatedByUuid = json['inactivatedByUuid']??'-';
inactivatedByName = json['inactivatedByName']??'-';
}

Map<String, dynamic> toJson() {
Expand Down

0 comments on commit 3de2b20

Please sign in to comment.