ExtraItem constructor

const ExtraItem({
  1. Key? key,
  2. required void onPressed()?,
  3. required ImageProvider<Object> image,
  4. double? width,
  5. double? height,
  6. required String title,
})

Implementation

const ExtraItem({
  Key? key,
  required this.onPressed,
  required this.image,
  this.width,
  this.height,
  required this.title,
}) : super(key: key);