GoBackButton constructor

const GoBackButton({
  1. Key? key,
  2. Color? color,
  3. double? size,
  4. FutureOr<void> onGoBack(
    1. BuildContext
    )?,
})

Implementation

const GoBackButton({
  super.key,
  this.color,
  this.size,
  this.onGoBack,
});