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