email property

String email

Retrieves the email address.

Implementation

String get email => getString(keyEmail);
void email= (String value)

Sets the email address.

Implementation

set email(String value) {
  _data[keyEmail] = value;
}