copyWith method

M7CapturedImage copyWith({
  1. String? imgPath,
  2. bool? didCaptureAutomatically,
})

Implementation

M7CapturedImage copyWith({
  String? imgPath,
  bool? didCaptureAutomatically,
}) {
  return M7CapturedImage(
    imgPath: imgPath ?? this.imgPath,
    didCaptureAutomatically:
        didCaptureAutomatically ?? this.didCaptureAutomatically,
  );
}