copyWith method

Angle$Response copyWith({
  1. double? angle,
})

Implementation

Angle$Response copyWith({double? angle}) {
  return Angle$Response(angle: angle ?? this.angle);
}