requestStoragePermission method
Requests storage access permission from the user.
Returns true if permission was granted, false if denied
Example:
final hasPermission = await MediaManagerPlatform.instance.requestStoragePermission();
Implementation
Future<bool> requestStoragePermission() {
throw UnimplementedError(
'requestStoragePermission() has not been implemented.',
);
}