toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cloudProducts = this.cloudProducts;
  final locations = this.locations;
  final name = this.name;
  final projectCount = this.projectCount;
  final resourceCount = this.resourceCount;
  final resourceTypes = this.resourceTypes;
  final warnings = this.warnings;
  return {
    'cloudProducts': ?cloudProducts,
    'locations': ?locations,
    'name': ?name,
    'projectCount': ?projectCount,
    'resourceCount': ?resourceCount,
    'resourceTypes': ?resourceTypes,
    'warnings': ?warnings,
  };
}