refresh property

Future<T?> Function({VoidCallback? onDone, ErrorCallBack? onError, SuccessCallBack<T>? onSuccess, bool? reloading, bool throwError, bool useCache}) refresh
getter/setter pair

refresh is a function that call execute again, but doesn't reserve configuration return null if futureFunction hasn't been initialize

Implementation

late Future<T?> Function({
  bool? reloading,
  SuccessCallBack<T>? onSuccess,
  VoidCallback? onDone,
  ErrorCallBack? onError,
  bool throwError,
  bool useCache,
}) refresh = _emptyRefreshFunction;