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