AppbarImage constructor

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

Implementation

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