How to install and use email_validator with Flutter 3.10.5

A popular Flutter package with 871 likes that support Flutter version 3.10.5 and above. Last version of the package was published on Jul 27, 2023.

Installing email_validator

You can either add the package directly using the flutter command line.

$ flutter pub add email_validator

Or add the dependency directly to your pubspec.yaml file.
dependencies:
  email_validator: ^2.1.17

In either case, make sure to refresh your packages by running the following command:

$ flutter pub get

Using email_validator

Once you have installed the package, you can use it in your Flutter application by importing it.
import 'package:email_validator/email_validator.dart';