fromJson static method
Implementation
static DropDownValue fromJson(Map<String, dynamic> json) {
return DropDownValue(
json['value'] as String,
json['label'] as String,
);
}
static DropDownValue fromJson(Map<String, dynamic> json) {
return DropDownValue(
json['value'] as String,
json['label'] as String,
);
}