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