ChannelSectionListResponse.fromJson constructor
ChannelSectionListResponse.fromJson(
- Map json_
Implementation
ChannelSectionListResponse.fromJson(core.Map json_)
: this(
etag: json_['etag'] as core.String?,
eventId: json_['eventId'] as core.String?,
items: (json_['items'] as core.List?)
?.map((value) => ChannelSection.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
kind: json_['kind'] as core.String?,
visitorId: json_['visitorId'] as core.String?,
);