copyWith method

RadarEntry copyWith({
  1. double? value,
})

Lerps a RadarEntry based on t value, check Tween.lerp.

Implementation

RadarEntry copyWith({double? value}) =>
    RadarEntry(value: value ?? this.value);