Account constructor

Account(
  1. String? id,
  2. String? issuer,
  3. String? displayIssuer,
  4. String? accountName,
  5. String? displayAccountName,
  6. String? imageURL,
  7. String? backgroundColor,
  8. int? timeAdded, [
  9. List<Mechanism>? mechanismList,
])

Creates Account object with given information.

Implementation

Account(
    this.id,
    this.issuer,
    this.displayIssuer,
    this.accountName,
    this.displayAccountName,
    this.imageURL,
    this.backgroundColor,
    this.timeAdded,
    [this.mechanismList]);