UserBody constructor

UserBody({
  1. String? email,
  2. String? password,
  3. String? type,
  4. UserDetailBody? detail,
  5. String? storeId,
  6. List<String>? stores,
  7. List<UserRoleBody>? roles,
})

Implementation

UserBody({
  this.email,
  this.password,
  this.type,
  this.detail,
  this.storeId,
  this.stores,
  this.roles,
});