listFromJson static method

List<DataMatrixEccType> listFromJson(
  1. List json
)

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

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

Implementation

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