fetch method

Future<T?> fetch({
  1. bool isCached = true,
})

根据 responder 自动解析成对应的 model 并返回

Implementation

Future<T?> fetch({bool isCached = true}) async {
  return request(isCached: isCached).then((value) => value.data);
}