SavingsPlansCoverageData.fromJson constructor
Implementation
factory SavingsPlansCoverageData.fromJson(Map<String, dynamic> json) {
return SavingsPlansCoverageData(
coveragePercentage: json['CoveragePercentage'] as String?,
onDemandCost: json['OnDemandCost'] as String?,
spendCoveredBySavingsPlans: json['SpendCoveredBySavingsPlans'] as String?,
totalCost: json['TotalCost'] as String?,
);
}