copyWith method

FadeRange copyWith({
  1. double? top,
  2. double? bottom,
})

Implementation

FadeRange copyWith({double? top, double? bottom}) {
  return FadeRange(top: top ?? this.top, bottom: bottom ?? this.bottom);
}