User constructor

User({
  1. String? key,
  2. String? password,
})

Implementation

User({
  this.key,
  this.password,
});