WalletTypeIcon constructor

const WalletTypeIcon({
  1. Key? key,
  2. required WalletType type,
  3. double width = 20,
  4. BoxFit fit = BoxFit.contain,
  5. Color? color,
  6. AlignmentGeometry alignment = Alignment.center,
  7. bool matchTextDirection = false,
})

Implementation

const WalletTypeIcon({
  Key? key,
  required this.type,
  this.width = 20,
  this.fit = BoxFit.contain,
  this.color,
  this.alignment = Alignment.center,
  this.matchTextDirection = false,
}) : super(key: key);