Turn constructor

Turn({
  1. String? password,
  2. String? turn,
  3. String? username,
})

Implementation

Turn({
  this.password,
  this.turn,
  this.username,
});