Account constructor

Account({
  1. String? accountId,
  2. String? fingerprint,
  3. String? name,
  4. bool? shareData,
})

Implementation

Account({
  this.accountId,
  this.fingerprint,
  this.name,
  this.shareData,
});