copyWith method

CopyPageRequestBody copyWith({
  1. ContentBodyCreate? storage,
  2. ContentBodyCreate? editor2,
})

Implementation

CopyPageRequestBody copyWith(
    {ContentBodyCreate? storage, ContentBodyCreate? editor2}) {
  return CopyPageRequestBody(
    storage: storage ?? this.storage,
    editor2: editor2 ?? this.editor2,
  );
}