In my email validation, I want to make it mandatory that the user should use the full .com extension in there email field. Currently, the way I have my RegExp it only accepts starting with .c or .o or .m instead of throwing an error if there in no exact match with .com
How do I go about resolving this?
Here is my RegExp
final RegExp emailValidatorRegExp = RegExp(r"^[a-zA-Z0-9.]+@[a-zA-Z0-9]+.com");
It can check domains like
[email protected]and[email protected]