AppBarAction constructor

const AppBarAction(
  1. Widget child, {
  2. Key? key,
  3. bool center = false,
  4. bool showInAllScreens = false,
  5. bool showInDesktop = true,
  6. bool showInPhone = false,
  7. bool showInTablet = false,
  8. bool showInWatch = false,
})

Define a AppBarAction widget.

Implementation

const AppBarAction(
  this.child, {
  Key? key,
  this.center = false,
  this.showInAllScreens = false,
  this.showInDesktop = true,
  this.showInPhone = false,
  this.showInTablet = false,
  this.showInWatch = false,
}) : super(key: key);