copyWith method

ShutterSpeed$Response copyWith({
  1. double? shutterSpeed,
})

Implementation

ShutterSpeed$Response copyWith({double? shutterSpeed}) {
  return ShutterSpeed$Response(
      shutterSpeed: shutterSpeed ?? this.shutterSpeed);
}