toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final environment = this.environment;
  final runtime = this.runtime;
  final uri = this.uri;
  return {
    'displayName': ?displayName,
    'environment': ?environment,
    'runtime': ?runtime,
    'uri': ?uri,
  };
}