In Javascript when I provide an onSubmit
function, and I return 'false' from the function, it prevents the page from changing/reloading.
However in Dart the onSubmit.listen(...)
function does not take a return type.
How do I stop the submit from sending the form data and changing/reloading the page?