UserRequestBody constructor

const UserRequestBody({
  1. String login = '',
  2. String email = '',
  3. String avatarUrl = '',
  4. bool active = true,
})

Implementation

const UserRequestBody({
  this.login = '',
  this.email = '',
  this.avatarUrl = '',
  this.active = true,
});