copyWith method

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

Implementation

ScreenDistance copyWith({
  double? value
}) {
  return ScreenDistance(
    value ?? this.value
  );
}