id property
      
      String
      get
      id
      
    
    
A unique identifier for the account. This ID will not change
for the lifetime of the account. Empty if the user is not
signed in or (in M41+) the identity.email
manifest permission is not specified.
Implementation
String get id => _wrapped.id;
      
      set
      id
      (String v) 
      
    
    
    
Implementation
set id(String v) {
  _wrapped.id = v;
}