fetch method
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,
);
}