static List<UserModel> fromJsonList(var data) { return data .map<UserModel>((json) => UserModel.fromJson(json)) .toList(); }