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