PhoenixBackButton constructor

const PhoenixBackButton({
  1. Key? key,
  2. Color color = Colors.black,
  3. VoidCallback? callback,
  4. double size = 28,
})

Implementation

const PhoenixBackButton({
  Key? key,
  this.color = Colors.black,
  this.callback,
  this.size = 28,
}) : super(key: key);