RemoveLinkedBillsDto.fromJson constructor

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

Implementation

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