BankAccountCard constructor
const
BankAccountCard({
- required BankAccount account,
- Key? key,
- VoidCallback? onTap,
- VoidCallback? onLongPress,
- Widget itemBuilder()?,
- bool showFullBalance = true,
- Widget? actions,
- EdgeInsetsGeometry? padding,
- BorderRadius? radius,
- Color? backgroundColor,
- Gradient? gradient,
- Color? foregroundColor,
- Color? secondaryColor,
- List<
BoxShadow> ? shadow, - TextStyle? titleStyle,
- TextStyle? amountStyle,
- TextStyle? numberStyle,
- IconData? typeIcon,
- IconData? frozenIcon,
- String closedLabel = 'Closed',
- String frozenSemanticLabel = 'Account frozen',
- String? semanticLabel,
- double? height,
Implementation
const BankAccountCard({
required this.account,
super.key,
this.onTap,
this.onLongPress,
this.itemBuilder,
this.showFullBalance = true,
this.actions,
this.padding,
this.radius,
this.backgroundColor,
this.gradient,
this.foregroundColor,
this.secondaryColor,
this.shadow,
this.titleStyle,
this.amountStyle,
this.numberStyle,
this.typeIcon,
this.frozenIcon,
this.closedLabel = 'Closed',
this.frozenSemanticLabel = 'Account frozen',
this.semanticLabel,
this.height,
});