toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final executable = this.executable;
  final executableVersion = this.executableVersion;
  final language = this.language;
  final rulesetName = this.rulesetName;
  final syncTime = this.syncTime;
  final updateTime = this.updateTime;
  return {
    'executable': ?executable,
    'executableVersion': ?executableVersion,
    'language': ?language,
    'rulesetName': ?rulesetName,
    'syncTime': ?syncTime,
    'updateTime': ?updateTime,
  };
}