email property

String get email

An email address for the user account signed into the current profile. Empty if the user is not signed in or the identity.email manifest permission is not specified.

Implementation

String get email => _wrapped.email;
set email (String v)

Implementation

set email(String v) {
  _wrapped.email = v;
}