toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final notebookRuntime = this.notebookRuntime;
  final notebookRuntimeId = this.notebookRuntimeId;
  final notebookRuntimeTemplate = this.notebookRuntimeTemplate;
  return {
    'notebookRuntime': ?notebookRuntime,
    'notebookRuntimeId': ?notebookRuntimeId,
    'notebookRuntimeTemplate': ?notebookRuntimeTemplate,
  };
}