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