CustomAccount constructor

CustomAccount({
  1. String? loginUrl,
  2. String? password,
  3. String? username,
})

Implementation

CustomAccount({
  this.loginUrl,
  this.password,
  this.username,
});