listFromJson static method

List<CodabarChecksumMode> listFromJson(
  1. List json
)

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

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

Implementation

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