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