GetTrackResponse constructor
GetTrackResponse({
- Iterable<
LocationPointObject> ? data,
Implementation
factory GetTrackResponse({
$core.Iterable<LocationPointObject>? data,
}) {
final $result = create();
if (data != null) {
$result.data.addAll(data);
}
return $result;
}