SelectOption.fromJson constructor
Implementation
factory SelectOption.fromJson(Map<String, dynamic> json) => SelectOption(
value: json["value"],
text: json["text"],
isDefault: json["isDefault"] ?? false,
isDisabled: json["isDisabled"] ?? false,
group: json["group"],
icon: json["icon"],
);