AdMusicLoadingButton constructor

const AdMusicLoadingButton({
  1. Key? key,
  2. required String buttonText,
  3. Function? onTap,
  4. bool isLoading = false,
  5. bool primary = true,
  6. EdgeInsets? margin,
  7. double? height,
  8. Color? backgoundColor,
  9. bool shadow = false,
  10. Color? textColor,
})

Implementation

const AdMusicLoadingButton({
  Key? key,
  required this.buttonText,
  this.onTap,
  this.isLoading: false,
  this.primary: true,
  this.margin,
  this.height,
  this.backgoundColor,
  this.shadow: false,
  this.textColor,
}) : super(key: key);