TPadFilter constructor

const TPadFilter({
  1. int? start,
  2. int? stop,
  3. Duration? startDuration,
  4. Duration? stopDuration,
  5. String? startMode,
  6. String? stopMode,
  7. String? color,
})

Implementation

const TPadFilter({
  this.start,
  this.stop,
  this.startDuration,
  this.stopDuration,
  this.startMode,
  this.stopMode,
  this.color,
})  : assert(startMode == null || startMode == 'add' || startMode == 'clone'),
      assert(stopMode == null || stopMode == 'add' || stopMode == 'clone');