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