MacosBackButton constructor

const MacosBackButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. Color? fillColor,
  4. Color? hoverColor,
  5. String? semanticLabel,
  6. MouseCursor? mouseCursor = SystemMouseCursors.basic,
})

Creates a BackButton with the appropriate icon/background colors based on light/dark themes.

Implementation

const MacosBackButton({
  super.key,
  this.onPressed,
  this.fillColor,
  this.hoverColor,
  this.semanticLabel,
  this.mouseCursor = SystemMouseCursors.basic,
});