Future<List<T>> list(TFilter filter) async { return _dio .post(url("list"), data: filter.toJSON()) .then((response) => response.bodyAsList<T>()); }