RecupCardDonation constructor

const RecupCardDonation({
  1. Key? key,
  2. required String imageAvatar,
  3. required double value,
  4. required String title,
  5. void onPressed()?,
  6. String textButton = '',
})

Implementation

const RecupCardDonation(
    {Key? key,
    required this.imageAvatar,
    required this.value,
    required this.title,
    this.onPressed,
    this.textButton = ''})
    : super(key: key);