UpAccount constructor

UpAccount({
  1. required String address,
  2. String email = "",
  3. bool newborn = false,
  4. String message = "",
  5. String signature = "",
})

Implementation

UpAccount({
  required this.address,
  this.email = "",
  this.newborn = false,
  this.message = "",
  this.signature = "",
});