PanState constructor

const PanState({
  1. double distance = 0.0,
  2. bool isPanning = false,
  3. bool wasFlung = false,
})

Implementation

const PanState({
  this.distance = 0.0,
  this.isPanning = false,
  this.wasFlung = false,
});