listFromJson static method

List<Fare1> listFromJson(
  1. List json
)

Implementation

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