listFromJson static method

List<ITF14BorderType> listFromJson(
  1. List json
)

Converts a list of JSON objects to a list of ITF14BorderType instances.

@param json The list of JSON objects to convert. @return A list of ITF14BorderType instances.

Implementation

static List<ITF14BorderType> listFromJson(List<dynamic> json) {
  return json.map((value) => ITF14BorderType.fromJson(value)).toList();
}