AppbarImage constructor

AppbarImage({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. String? imagePath,
  5. String? svgPath,
  6. EdgeInsetsGeometry? margin,
  7. Function? onTap,
})

Implementation

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