DonateWidget constructor

const DonateWidget(
  1. num amount, {
  2. Key? key,
  3. required String name,
  4. Widget? leading,
  5. Widget? trailing,
  6. Widget? tag,
  7. double height = 104 * 1,
  8. Widget? bottom,
})

Implementation

const DonateWidget(
  this.amount, {
  super.key,
  required this.name,
  this.leading,
  this.trailing,
  this.tag,
  this.height = 104 * 1,
  this.bottom,
});