BentoBoxWithImage constructor

const BentoBoxWithImage({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. required String imagePath,
})

Creates a BentoBoxWithImage widget.

Requires height, width, and imagePath.

Implementation

const BentoBoxWithImage({
  super.key,
  required this.height,
  required this.width,
  required this.imagePath,
});