JunnyAccount constructor

JunnyAccount({
  1. int localDbId = 0,
  2. String username = '',
  3. String? password,
})

Implementation

JunnyAccount({
  this.localDbId = 0,
  this.username = '',
  this.password,
});