fetch method

Future<T> fetch({
  1. bool forceRefresh = false,
})
inherited

Fetches or refreshes the data.

Implementation

Future<T> fetch({bool forceRefresh = false}) {
  return FKernal.instance.stateManager.fetch<T>(
    endpointId,
    params: params,
    pathParams: pathParams,
    forceRefresh: forceRefresh,
  );
}