toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annualLeasingCost = this.annualLeasingCost;
  final leasesAllowed = this.leasesAllowed;
  final leasesSupported = this.leasesSupported;
  final savings = this.savings;
  return {
    'annualLeasingCost': ?annualLeasingCost,
    'leasesAllowed': ?leasesAllowed,
    'leasesSupported': ?leasesSupported,
    'savings': ?savings,
  };
}