UserDto constructor

const UserDto({
  1. String? id,
  2. String? type,
  3. String? email,
  4. String? userName,
  5. List<String>? roles,
  6. List<String>? tags,
  7. String? status,
  8. String? createdOn,
  9. String? modifiedOn,
  10. Map<String, dynamic> raw = const {},
})

Implementation

const UserDto({
  this.id,
  this.type,
  this.email,
  this.userName,
  this.roles,
  this.tags,
  this.status,
  this.createdOn,
  this.modifiedOn,
  this.raw = const {},
});