GoogleExampleLibraryagentV1ListBooksResponse.fromJson constructor
GoogleExampleLibraryagentV1ListBooksResponse.fromJson(
- Map json_
Implementation
GoogleExampleLibraryagentV1ListBooksResponse.fromJson(core.Map json_)
: this(
books: (json_['books'] as core.List?)
?.map((value) => GoogleExampleLibraryagentV1Book.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);