Fuzziness.only constructor

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

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