Wallet constructor

const Wallet({
  1. Key? key,
  2. required HiveFlutterKitPlatform hfk,
  3. required String? username,
  4. List<Color>? backgroundColors,
  5. Color? fontColor,
  6. Color? cardColor,
  7. Color? balanceColor,
  8. Color? hbdColor,
  9. Color? savingsColor,
  10. Color? savingsHbdColor,
  11. Color? powerColor,
  12. Color? estimatedValueColor,
  13. Color? errorColor,
  14. Color? appBarColor,
})

Implementation

const Wallet({
  super.key,
  required this.hfk,
  required this.username,
  this.backgroundColors,
  this.fontColor,
  this.cardColor,
  this.balanceColor,
  this.hbdColor,
  this.savingsColor,
  this.savingsHbdColor,
  this.powerColor,
  this.estimatedValueColor,
  this.errorColor,
  this.appBarColor,
});