GetCustomerInfoProvidedField.fromJson constructor Null safety
Implementation
factory GetCustomerInfoProvidedField.fromJson(Map<String, dynamic> json) =>
GetCustomerInfoProvidedField(
json['type'],
json['description'],
json['choices'] == null ? null : List<String>.from(json['choices']),
json['optional'],
json['status'],
json['error'],
);