DonateRectangle constructor

const DonateRectangle({
  1. Key? key,
  2. double height = 50,
  3. double? width = 50,
  4. num? amount,
})

Implementation

const DonateRectangle({
  super.key,
  this.height = 50,
  this.width = 50,
  this.amount,
});