state property

AdState get state

Implementation

AdState get state {
  if (_isLoading) return AdState.loading;
  if (_isLoaded) return AdState.loaded;
  return AdState.notLoaded;
}