applyLoaderWithOption method

Future<T> applyLoaderWithOption(
  1. bool value
)

Implementation

Future<T> applyLoaderWithOption(bool value) async {
  if (value) {
    return await applyLoader;
  } else {
    return this;
  }
}