setMediaAutoDownload method
Implementation
@override
setMediaAutoDownload(bool enable) async {
try {
await mirrorFlyMethodChannel
.invokeMethod('setMediaAutoDownload', {'enable': enable});
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}