copyWith method

VersionRestore copyWith({
  1. VersionRestoreOperationKey? operationKey,
  2. VersionRestoreParams? params,
})

Implementation

VersionRestore copyWith(
    {VersionRestoreOperationKey? operationKey,
    VersionRestoreParams? params}) {
  return VersionRestore(
    operationKey: operationKey ?? this.operationKey,
    params: params ?? this.params,
  );
}