minInLane property

double get minInLane

Returns the minimum lane value.

Implementation

double get minInLane {
  var min = x;
  if (y < min) min = y;
  if (z < min) min = z;
  if (w < min) min = w;
  return min;
}