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