toJson method

  1. @override
Object toJson()
override

Implementation

@override
Object toJson() {
  return {
    'parent': parent,
    'notebookRuntimeTemplate': notebookRuntimeTemplate,
    if (notebookRuntime != null) 'notebookRuntime': notebookRuntime!.toJson(),
    if (notebookRuntimeId.isNotDefault)
      'notebookRuntimeId': notebookRuntimeId,
  };
}