Fuzziness.symmetric constructor

const Fuzziness.symmetric({
  1. required double width,
  2. required double height,
})

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.symmetric({
  required double width,
  required double height,
})  : top = height,
      bottom = height,
      left = width,
      right = width;