copyWith method

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

Implementation

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