PrecisionPayCard constructor
const
PrecisionPayCard({
- required double chartValue,
- required String cardTitle,
- required String currentValue,
- required String wSpinwheelValue,
- required String savingsValue,
- EdgeInsets? padding,
- EdgeInsets? margin,
- 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);