WalletTypeIcon constructor

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

Implementation

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