TruncateRequestedOptions constructor
TruncateRequestedOptions({})
Implementation
TruncateRequestedOptions({
/// The identifier of the file system related to this operation.
required String fileSystemId,
/// The unique identifier of this request.
required int requestId,
/// The path of the file to be truncated.
required String filePath,
/// Number of bytes to be retained after the operation completes.
required double length,
}) : _wrapped = $js.TruncateRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
filePath: filePath,
length: length,
);