SvgButton constructor

SvgButton({
  1. required String iconName,
  2. required void onTap(),
  3. double? width,
  4. double? height,
  5. double padding = 0.0,
})

Implementation

SvgButton({
  required this.iconName,
  required this.onTap,
  this.width,
  this.height,
  this.padding = 0.0,
});