listFromJson static method

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

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

Implementation

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