listFromJson static method

List<NewAppointmentModel> listFromJson(
  1. dynamic json
)

Implementation

static List<NewAppointmentModel> listFromJson(dynamic json) =>
    json.map(NewAppointmentModel.fromJson).toList();