BitcoinButtonFilled constructor

const BitcoinButtonFilled({
  1. Key? key,
  2. required String title,
  3. TextStyle? textStyle,
  4. double? width,
  5. double? height,
  6. double? cornerRadius,
  7. Color? tintColor,
  8. Color? textColor,
  9. Color? disabledTintColor,
  10. Color? disabledTextColor,
  11. bool disabled = false,
  12. bool isLoading = false,
  13. bool isCapsule = true,
  14. required VoidCallback? onPressed,
})

Implementation

const BitcoinButtonFilled({
  Key? key,
  required this.title,
  this.textStyle,
  this.width,
  this.height,
  this.cornerRadius,
  this.tintColor,
  this.textColor,
  this.disabledTintColor,
  this.disabledTextColor,
  this.disabled = false,
  this.isLoading = false,
  this.isCapsule = true,
  required this.onPressed,
}) : super(key: key);