getFileMetadata method

  1. @override
Future<CloudFile> getFileMetadata(
  1. String path
)
override

File Metadata not supported since flutter_onedrive does not provide it.

Implementation

@override
Future<CloudFile> getFileMetadata(String path) {
  return _executeRequest(
    () async {
      // The underlying package doesn't have a dedicated metadata fetch method.
      throw UnimplementedError('Get metadata functionality not implemented');
    },
    operation: 'getFileMetadata for $path',
  );
}