fromDecodedJsonList static method

List<DropDownResponse> fromDecodedJsonList(
  1. List jsonList
)

Implementation

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