AnimationRange constructor

AnimationRange(
  1. int? start,
  2. int? end
)

Implementation

AnimationRange(this.start, this.end) {
  assert(start! <= end! && start! >= 0 && end! >= 0);
}