GoogleExampleLibraryagentV1ListShelvesResponse.fromJson constructor

GoogleExampleLibraryagentV1ListShelvesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleExampleLibraryagentV1ListShelvesResponse.fromJson(core.Map json_)
  : this(
      nextPageToken: json_['nextPageToken'] as core.String?,
      shelves: (json_['shelves'] as core.List?)
          ?.map(
            (value) => GoogleExampleLibraryagentV1Shelf.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );