SavingsPlansCoverageData.fromJson constructor

SavingsPlansCoverageData.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}