AppButton constructor

const AppButton({
  1. Key? key,
  2. String? title,
  3. VoidCallback? onTab,
  4. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
})

Implementation

const AppButton(
    {super.key,
    this.title,
    this.onTab,
    this.padding = const EdgeInsets.symmetric(horizontal: 8, vertical: 4)});