RedoButton constructor

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

Creates a RedoButton with the specified child.

Implementation

const RedoButton({
  super.key,
  this.child = const Icon(Icons.redo),
});