toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final colabNotebookDisabled = this.colabNotebookDisabled;
  final references = this.references;
  final resourceDescription = this.resourceDescription;
  final resourceTitle = this.resourceTitle;
  final resourceUseCase = this.resourceUseCase;
  final supportsWorkbench = this.supportsWorkbench;
  final title = this.title;
  return {
    'colabNotebookDisabled': ?colabNotebookDisabled,
    'references': ?references,
    'resourceDescription': ?resourceDescription,
    'resourceTitle': ?resourceTitle,
    'resourceUseCase': ?resourceUseCase,
    'supportsWorkbench': ?supportsWorkbench,
    'title': ?title,
  };
}