PageButton constructor

const PageButton({
  1. Key? key,
  2. required String localetext,
  3. required String navigateTo,
  4. String? buttonType,
  5. String? iconName,
  6. double? iconSize,
})

Implementation

const PageButton(
    {super.key,
    required this.localetext,
    required this.navigateTo,
    this.buttonType,
    this.iconName,
    this.iconSize});