email method

String? email(
  1. String? email
)

Returns the email associated with this viewing session.

If no email is associated, it will return null.

Implementation

String? email(String? email) =>
    email != null ? _callMethod('email($email)') : _callMethod('email()');