FetchTreeResponse.fromJson constructor

FetchTreeResponse.fromJson(
  1. Map json_
)

Implementation

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