hasGalleryPermission method
Implementation
@override
Future<bool> hasGalleryPermission() async {
try {
final result = await methodChannel.invokeMethod('hasGalleryPermission');
return _convertToBool(result);
} catch (e) {
return false;
}
}