map<R extends Object?> method
Implementation
R map<R extends Object?>({
required R Function(EditFormUIActionDoNothing doNothing) doNothing,
}) {
final editFormUIAction = this;
if (editFormUIAction is EditFormUIActionDoNothing) {
return doNothing(editFormUIAction);
} else {
throw AssertionError();
}
}