PrecisionPayCard constructor

const PrecisionPayCard({
  1. required double chartValue,
  2. required String cardTitle,
  3. required String currentValue,
  4. required String wSpinwheelValue,
  5. required String savingsValue,
  6. EdgeInsets? padding,
  7. EdgeInsets? margin,
  8. Key? key,
})

Implementation

const PrecisionPayCard({
  required double chartValue,
  required String cardTitle,
  required String currentValue,
  required String wSpinwheelValue,
  required String savingsValue,
  EdgeInsets? padding,
  EdgeInsets? margin,
  Key? key,
})  : _chartValue = chartValue,
      _cardTitle = cardTitle,
      _currentValue = currentValue,
      _wSpinwheelValue = wSpinwheelValue,
      _savingsValue = savingsValue,
      _margin = margin,
      _padding = padding,
      super(key: key);