AppFloatingActionButton constructor

const AppFloatingActionButton({
  1. Key? key,
  2. required void onPressed(),
  3. required bool isShowOnlyIcon,
  4. String? text,
  5. Color backgroundColor = AppColors.blue,
  6. bool isEnabled = true,
  7. IconData? iconData,
})

Implementation

const AppFloatingActionButton(
    {super.key,
    required this.onPressed,
    required this.isShowOnlyIcon,
    this.text,
    this.backgroundColor = AppColors.blue,
    this.isEnabled = true,
    this.iconData});