AppbarIconbutton constructor

AppbarIconbutton({
  1. Key? key,
  2. String? imagePath,
  3. String? svgPath,
  4. EdgeInsetsGeometry? margin,
  5. Function? onTap,
})

Implementation

AppbarIconbutton({
  Key? key,
  this.imagePath,
  this.svgPath,
  this.margin,
  this.onTap,
}) : super(
        key: key,
      );