TruncateRequestedOptions constructor

TruncateRequestedOptions({
  1. required String fileSystemId,
  2. required int requestId,
  3. required String filePath,
  4. required double length,
})

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,
      );