GetMetadataRequestedOptions constructor
GetMetadataRequestedOptions({})
Implementation
GetMetadataRequestedOptions({
/// 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 entry to fetch metadata about.
required String entryPath,
/// 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,
/// Set to `true` if `cloudIdentifier` value is
/// requested.
required bool cloudIdentifier,
}) : _wrapped = $js.GetMetadataRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
entryPath: entryPath,
isDirectory: isDirectory,
name: name,
size: size,
modificationTime: modificationTime,
mimeType: mimeType,
thumbnail: thumbnail,
cloudIdentifier: cloudIdentifier,
);