AccountInfo constructor

AccountInfo(
  1. String? accountId,
  2. AccountName? name,
  3. String? email,
  4. bool? emailVerified,
  5. String? profilePhotoUrl,
  6. bool? disabled,
  7. String? country,
  8. String? locale,
  9. String? referralLink,
  10. bool? isPaired,
  11. AccountType? accountType,
  12. RootInfo? rootInfo,
)

Implementation

AccountInfo(
    this.accountId,
    this.name,
    this.email,
    this.emailVerified,
    this.profilePhotoUrl,
    this.disabled,
    this.country,
    this.locale,
    this.referralLink,
    this.isPaired,
    this.accountType,
    this.rootInfo);