toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final amount = this.amount;
  final coresPerLicense = this.coresPerLicense;
  final license = this.license;
  return {
    'amount': ?amount,
    'coresPerLicense': ?coresPerLicense,
    'license': ?license,
  };
}