getShareTokenFromShareLink method
Share token is just the share link for OneDrive.
Implementation
@override
Future<String?> getShareTokenFromShareLink(Uri shareLink) async {
// For OneDrive, the full shareable URL itself acts as the "share token".
return shareLink.toString();
}