SvgIconButton constructor

const SvgIconButton({
  1. Key? key,
  2. required String svgPath,
  3. required VoidCallback onPressed,
})

Implementation

const SvgIconButton(
    {Key? key, required this.svgPath, required this.onPressed})
    : super(key: key);