DonateButton constructor

const DonateButton({
  1. void onPressed()?,
  2. required String hint,
  3. ChatButton? trailing,
})

Implementation

const DonateButton({
  void Function()? onPressed,
  required this.hint,
  this.trailing,
}) : super(onPressed);