copyWithWrapped method

Angle$Response copyWithWrapped({
  1. Wrapped<double?>? angle,
})

Implementation

Angle$Response copyWithWrapped({Wrapped<double?>? angle}) {
  return Angle$Response(angle: (angle != null ? angle.value : this.angle));
}