SecondaryExpandedButton constructor

const SecondaryExpandedButton({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? size,
  4. required Icon icon,
  5. required int id,
  6. VoidCallback? onPressed,
})

Implementation

const SecondaryExpandedButton(
    {Key? key,
    this.backgroundColor,
    this.size,
    required this.icon,
    required this.id,
    this.onPressed})
    : super(key: key);