copyWith method

VideoSource copyWith({
  1. CameraPosition? position,
})

Implementation

VideoSource copyWith({
  CameraPosition? position,
}) {
  return VideoSource(
    position: position ?? this.position,
  );
}