Account constructor

Account({
  1. required Emails emails,
  2. String? created,
  3. Object? createdTimestamp,
  4. bool? isActive,
  5. bool? isRegistered,
  6. bool? isVerified,
  7. Object? lastLoginTimestamp,
  8. Object? lastUpdatedTimestamp,
  9. String? loginProvider,
  10. Object? oldestUpdateTimestamp,
  11. Profile? profile,
  12. String? registered,
  13. Object? registeredTimestamp,
  14. Object? signatureTimestamp,
  15. String? socialProviders,
  16. String? uid,
  17. String? uidSignature,
  18. String? verified,
  19. Object? verifiedTimestamp,
})

The default constructor.

Implementation

Account({
  required this.emails,
  this.created,
  this.createdTimestamp,
  this.isActive,
  this.isRegistered,
  this.isVerified,
  this.lastLoginTimestamp,
  this.lastUpdatedTimestamp,
  this.loginProvider,
  this.oldestUpdateTimestamp,
  this.profile,
  this.registered,
  this.registeredTimestamp,
  this.signatureTimestamp,
  this.socialProviders,
  this.uid,
  this.uidSignature,
  this.verified,
  this.verifiedTimestamp,
});