AuthorizationDto constructor

AuthorizationDto({
  1. String? email,
  2. String? name,
  3. DateTime? lastLogin,
  4. List<int>? relations,
})

Implementation

AuthorizationDto({
  this.email,
  this.name,
  this.lastLogin,
  this.relations,
});