copyWith method

ShutterAngle$Response copyWith({
  1. double? shutterAngle,
})

Implementation

ShutterAngle$Response copyWith({double? shutterAngle}) {
  return ShutterAngle$Response(
      shutterAngle: shutterAngle ?? this.shutterAngle);
}