RevenueCard constructor

const RevenueCard({
  1. Key? key,
  2. required double amount,
  3. String title = 'Revenue',
})

Implementation

const RevenueCard({super.key, required this.amount, this.title = 'Revenue'});