ReadDirectoryRequestedOptions constructor
ReadDirectoryRequestedOptions({})
Implementation
ReadDirectoryRequestedOptions({
/// 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 directory which contents are requested.
required String directoryPath,
/// Set to `true` if `is_directory` value is requested.
required bool isDirectory,
/// Set to `true` if `name` value is requested.
required bool name,
/// Set to `true` if `size` value is requested.
required bool size,
/// Set to `true` if `modificationTime` value is
/// requested.
required bool modificationTime,
/// Set to `true` if `mimeType` value is requested.
required bool mimeType,
/// Set to `true` if `thumbnail` value is requested.
required bool thumbnail,
}) : _wrapped = $js.ReadDirectoryRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
directoryPath: directoryPath,
isDirectory: isDirectory,
name: name,
size: size,
modificationTime: modificationTime,
mimeType: mimeType,
thumbnail: thumbnail,
);