toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final classpathEntries = this.classpathEntries;
  final hadoopProperties = this.hadoopProperties;
  final metricsProperties = this.metricsProperties;
  final resourceProfiles = this.resourceProfiles;
  final runtime = this.runtime;
  final sparkProperties = this.sparkProperties;
  final systemProperties = this.systemProperties;
  return {
    'classpathEntries': ?classpathEntries,
    'hadoopProperties': ?hadoopProperties,
    'metricsProperties': ?metricsProperties,
    'resourceProfiles': ?resourceProfiles,
    'runtime': ?runtime,
    'sparkProperties': ?sparkProperties,
    'systemProperties': ?systemProperties,
  };
}