listFromJson static method

List<Schedule> listFromJson(
  1. List json
)

Implementation

static List<Schedule> listFromJson(
  List<dynamic> json,
) =>
    json
        .map(
          (value) => Schedule.fromJson(value),
        )
        .toList();