Delay constructor

Delay(
  1. Duration duration, {
  2. dynamic value,
  3. Result? result,
})

Creates an instance of a Delay effect.

Implementation

Delay(this.duration, {this.value, Result? result}) : super(result: result);