load method

void load()

Calls the method to load the data Does not call it if it has already been loaded

See also reLoad

Implementation

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