UserInfoDto constructor

UserInfoDto({
  1. required String id,
  2. required String emailAddress,
  3. required UserInfoDtoAccountStateEnum accountState,
  4. UserInfoDtoSubscriptionTypeEnum? subscriptionType,
  5. required UserInfoDtoAccountTypeEnum accountType,
  6. required DateTime createdAt,
})

Returns a new UserInfoDto instance.

Implementation

UserInfoDto({
  required this.id,
  required this.emailAddress,
  required this.accountState,
  this.subscriptionType,
  required this.accountType,
  required this.createdAt,
});