GetMetadataRequestedOptions constructor

GetMetadataRequestedOptions({
  1. required String fileSystemId,
  2. required int requestId,
  3. required String entryPath,
  4. required bool isDirectory,
  5. required bool name,
  6. required bool size,
  7. required bool modificationTime,
  8. required bool mimeType,
  9. required bool thumbnail,
  10. required bool cloudIdentifier,
})

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