LinkedBillDto.fromJson constructor

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

Implementation

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