requestMediaProjection static method
Implementation
static Future<bool> requestMediaProjection() async {
try {
final result = await _channel.invokeMethod('requestMediaProjection');
return result as bool;
} catch (e) {
return false;
}
}