fromDecodedJsonList static method
Implementation
static List<DropDownResponse> fromDecodedJsonList(List<dynamic> jsonList) {
return jsonList
.map((item) => DropDownResponse.fromJson(item))
.where((e) => e.text != null)
.toList();
}