CustomerInformationNeededResponse.fromJson constructor

CustomerInformationNeededResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CustomerInformationNeededResponse.fromJson(
        Map<String, dynamic> json) =>
    new CustomerInformationNeededResponse(json['fields'] == null
        ? null
        : new List<String>.from(json['fields']));