Account constructor

Account({
  1. String? accountId,
  2. String? accountName,
  3. bool? adultContent,
  4. String? languageCode,
  5. String? name,
  6. bool? testAccount,
  7. TimeZone? timeZone,
})

Implementation

Account({
  this.accountId,
  this.accountName,
  this.adultContent,
  this.languageCode,
  this.name,
  this.testAccount,
  this.timeZone,
});