LedgerIconButton constructor

const LedgerIconButton({
  1. Key? key,
  2. required String assetPath,
  3. LedgerIconButtonSize size = LedgerIconButtonSize.large,
  4. void onPressed(
    1. BuildContext context
    )?,
  5. Color? iconColor,
  6. required String semanticsLabel,
  7. required String trackLabel,
  8. BorderRadius? borderRadius,
  9. Color? color,
  10. EdgeInsets? padding,
  11. BoxBorder? border,
  12. double? bgOpacity,
  13. String? package,
  14. double? dimension,
})

Implementation

const LedgerIconButton({
  super.key,
  required this.assetPath,
  this.size = LedgerIconButtonSize.large,
  this.onPressed,
  this.iconColor,
  required this.semanticsLabel,
  required this.trackLabel,
  this.borderRadius,
  this.color,
  this.padding,
  this.border,
  this.bgOpacity,
  this.package,
  this.dimension,
});