Notebook.fromJson constructor

Notebook.fromJson(
  1. Map json_
)

Implementation

Notebook.fromJson(core.Map json_)
    : this(
        lastAuthor: json_.containsKey('lastAuthor')
            ? json_['lastAuthor'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        notebookUpdateTime: json_.containsKey('notebookUpdateTime')
            ? json_['notebookUpdateTime'] as core.String
            : null,
        service: json_.containsKey('service')
            ? json_['service'] as core.String
            : null,
      );