CreateLinkBillDto.fromJson constructor
Implementation
factory CreateLinkBillDto.fromJson(Map<String, dynamic> json) {
return CreateLinkBillDto(
billIds:
(json["billIds"] as List<dynamic>?)?.map((e) => e as String).toList(),
type: decodeBillLinkingTypeDto(
BillLinkingTypeDtoEnumMap, json["type"] as String),
);
}