Fuzziness.zero constructor

const Fuzziness.zero()

Fuzziness extends the boundaries for touch detection.

For example: If Fuzziness.all(10) is applied, the area for touch detection will be increased by 10 in all directions.

Implementation

const Fuzziness.zero()
    : top = 0,
      bottom = 0,
      left = 0,
      right = 0;