noCmd function
Helper function to create an update result with no command.
return noCmd(newModel);
// equivalent to: return (newModel, null);
Implementation
UpdateResult noCmd(Model model) => (model, null);
Helper function to create an update result with no command.
return noCmd(newModel);
// equivalent to: return (newModel, null);
UpdateResult noCmd(Model model) => (model, null);