asShowLoadingOrNull property

EditFormUIStateShowLoading? get asShowLoadingOrNull

Implementation

EditFormUIStateShowLoading? get asShowLoadingOrNull {
  final editFormUIState = this;
  return editFormUIState is EditFormUIStateShowLoading
      ? editFormUIState
      : null;
}