SimpleBottomAppBar constructor

const SimpleBottomAppBar({
  1. BarButton? button01,
  2. BarButton? button02,
  3. BarButton? button03,
  4. BarButton? button04,
  5. Key? key,
})

Optionally supply up to four Bottom Bar buttons to be displayed.

Implementation

const SimpleBottomAppBar(
    {this.button01, this.button02, this.button03, this.button04, Key? key})
    : super(key: key);