toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final config = this.config;
  final family = this.family;
  final osName = this.osName;
  final runtime = this.runtime;
  final version = this.version;
  return {
    'config': ?config,
    'family': ?family,
    'osName': ?osName,
    'runtime': ?runtime,
    'version': ?version,
  };
}