CreateFileRequestedOptions constructor

CreateFileRequestedOptions({
  1. required String fileSystemId,
  2. required int requestId,
  3. required String filePath,
})

Implementation

CreateFileRequestedOptions({
  /// 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 created.
  required String filePath,
}) : _wrapped = $js.CreateFileRequestedOptions(
        fileSystemId: fileSystemId,
        requestId: requestId,
        filePath: filePath,
      );