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