email property
Implementation
String get email {
if (session != null &&
(session!.userProfile.email != null &&
session!.userProfile.email!.isNotEmpty)) {
return session!.userProfile.email ?? '';
}
return _email;
}
Implementation
set email(String value) {
_email = value;
}