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