CustomerInformationNeededResponse.fromJson constructor

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

Implementation

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