asDoNothingOrNull property

EditFormUIActionDoNothing? get asDoNothingOrNull

Implementation

EditFormUIActionDoNothing? get asDoNothingOrNull {
  final editFormUIAction = this;
  return editFormUIAction is EditFormUIActionDoNothing
      ? editFormUIAction
      : null;
}