Account constructor

Account(
  1. String? uuid,
  2. String? name,
  3. String? currency,
  4. double? availableBalance,
  5. bool? isDefault,
  6. bool? active,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
  9. DateTime? deletedAt,
  10. String? type,
  11. bool? ready,
  12. double? holdValue,
)

Implementation

Account(
    this.uuid,
    this.name,
    this.currency,
    this.availableBalance,
    this.isDefault,
    this.active,
    this.createdAt,
    this.updatedAt,
    this.deletedAt,
    this.type,
    this.ready,
    this.holdValue);