Denominations.fromJson constructor
Denominations.fromJson(
- Map<String, dynamic> json
)
Implementation
Denominations.fromJson(Map<String, dynamic> json) {
id = json['id'];
createdBy = json['createdBy'];
updatedBy = json['updatedBy'];
createdDate = json['createdDate'];
updatedDate = json['updatedDate'];
entityId = json['entityId'];
currencyType = json['currencyType'];
unit = json['unit'];
denominations = json['denominations'];
type = json['type'];
amount = json['amount'];
adjusted = json['adjusted'];
defaultDenomination = json['defaultDenomination'];
matched = json['matched'];
}