RegisterEditorRequestBody constructor

RegisterEditorRequestBody({
  1. required String firstName,
  2. required String lastName,
  3. required String email,
  4. required String username,
  5. required String password,
  6. required String societa,
  7. required String partitaiva,
  8. required String token,
  9. bool relationshipsAuth = false,
  10. bool termsAndConditions = false,
})

Returns a new RegisterEditorRequestBody instance.

Implementation

RegisterEditorRequestBody({
  required this.firstName,
  required this.lastName,
  required this.email,
  required this.username,
  required this.password,
  required this.societa,
  required this.partitaiva,
  required this.token,
  this.relationshipsAuth = false,
  this.termsAndConditions = false,
});