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