email_address

Last updated:

0 purchases

email_address Image
email_address Images
Add to Cart

Description:

email address

This package provides the value type EmailAddress to have a typed
representation of the e-mail address with the encapsulated validation.
Getting started #


Install the package as a dependency, running the command in the shell:
dart pub add email_address
copied to clipboard


Import the library:
import 'package:email_address/email_address.dart';
copied to clipboard


Usage #
Parsing a EmailAddress from string:
try {
final address = EmailAddress.parse('[email protected]');
} on EmailAddressFormatException {
// ...
}
copied to clipboard
Alternatively, you can use .parseOrNull():
assert(EmailAddress.parseOrNull('[email protected]') != null);
assert(EmailAddress.parseOrNull('not a e-mail address') == null);
copied to clipboard
When you need to, just check the format of the string without creating
an instance of the EmailAddress:
assert(EmailAddress.validFormat('[email protected]') == true);
assert(EmailAddress.validFormat('not a e-mail address') == false);
copied to clipboard
Make case-insensitive check for equality of the addresses:
final address = EmailAddress.parse('[email protected]');
final sameAddressInUpperCase = EmailAddress.parse('[email protected]');

assert(address == sameAddressInUpperCase);
copied to clipboard
Convert the EmailAddress back to string using .toString() method as expected:
final address = EmailAddress.parse('[email protected]');
assert('[email protected]' == address.toString());
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.