toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final compilerError = this.compilerError;
  final containerVersion = this.containerVersion;
  final newWorkspacePath = this.newWorkspacePath;
  final syncStatus = this.syncStatus;
  return {
    'compilerError': ?compilerError,
    'containerVersion': ?containerVersion,
    'newWorkspacePath': ?newWorkspacePath,
    'syncStatus': ?syncStatus,
  };
}