reLoad method

void reLoad()

Calls the method to re load the data Attention reload the data even if it has already been loaded

See also load

Implementation

void reLoad() async {
  await Future.delayed(const Duration());
  if (state is LoadCubitLoading<ExtraData>) return;
  emit(state.toLoading());
  _loader();
}