FastButtonIcon constructor
const
FastButtonIcon({
- Key? key,
- required IconData icon,
- VoidCallback? onPressed,
- bool? loading,
- Color? background,
- Color? color,
- double? radius,
- double? elevation,
- ButtonVariant variant = ButtonVariant.contained,
FastButtonIcon
FastButtonIcon(
icon: Icons.add,
onPressed: () {},
)
Implementation
const FastButtonIcon(
{super.key,
required this.icon,
this.onPressed,
this.loading,
this.background,
this.color,
this.radius,
this.elevation,
this.variant = ButtonVariant.contained});