LinkedBillDto.fromJson constructor
Implementation
factory LinkedBillDto.fromJson(Map<String, dynamic> json) {
return LinkedBillDto(
billId: json["billId"] as String,
type: decodeBillLinkingTypeDto(
BillLinkingTypeDtoEnumMap, json["type"] as String),
);
}