AppBarButtonText constructor

const AppBarButtonText({
  1. Key? key,
  2. String? text,
  3. TextStyle? textStyle,
  4. Color? textColor,
  5. Color? backgroundColor,
  6. Function? onPressed,
  7. EdgeInsets? padding = const EdgeInsets.fromLTRB(16, 0, 16, 0),
  8. EdgeInsets? margin,
  9. double? width,
  10. double? height = 32,
})

Implementation

const AppBarButtonText({
  super.key,
  super.text,
  super.textStyle,
  super.textColor,
  super.backgroundColor,
  super.onPressed,
  super.padding = const EdgeInsets.fromLTRB(16, 0, 16, 0),
  super.margin,
  super.width,
  super.height = 32,
});