Email constructor

Email(
  1. String address
)

Creates an email value from raw text.

This constructor does not check if address is valid. Use isValid when you need to check the address.

Implementation

Email(this.address);