copyWith method

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

Implementation

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