TargetLocations.fromJson constructor
TargetLocations.fromJson(
- Map json_
Implementation
TargetLocations.fromJson(core.Map json_)
: this(
locations: (json_['locations'] as core.List?)
?.map((value) => value as core.String)
.toList(),
snapshotTime: json_['snapshotTime'] as core.String?,
);