NotebookLmNotebook.fromJson constructor

NotebookLmNotebook.fromJson(
  1. Map json_
)

Implementation

NotebookLmNotebook.fromJson(core.Map json_)
  : this(
      id: json_['id'] as core.String?,
      title: json_['title'] as core.String?,
      url: json_['url'] as core.String?,
    );