PointsToStaysDecoder constructor Null safety

PointsToStaysDecoder(
  1. {int? maxTimeGapSeconds,
  2. double? maxDistanceGapMeters}
)

Implementation

PointsToStaysDecoder({int? maxTimeGapSeconds, double? maxDistanceGapMeters})
    : _maxTimeGapSeconds = maxTimeGapSeconds,
      _maxDistanceGapMeters = maxDistanceGapMeters;