fromJson static method
Implementation
static StaticDropdownSource fromJson(Map<String, dynamic> json) {
return StaticDropdownSource(
values: (json['values'] as List)
.map((e) => DropDownValue.fromJson(e as Map<String, dynamic>))
.toList(),
);
}