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