Fuzziness constructor

const Fuzziness({
  1. required double top,
  2. required double bottom,
  3. required double left,
  4. required double right,
})

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({
  required this.top,
  required this.bottom,
  required this.left,
  required this.right,
});