ZoomOutButton constructor

const ZoomOutButton({
  1. Key? key,
  2. Widget child = const Icon(Icons.zoom_out),
})

Creates a ZoomOutButton with the specified child.

Implementation

const ZoomOutButton({
  super.key,
  this.child = const Icon(Icons.zoom_out),
});