cancelBackup method
This method is used to cancel the backup started.
Implementation
@override
Future<void> cancelBackup() async {
try {
await mirrorFlyMethodChannel.invokeMethod<bool>('cancelBackup');
} on PlatformException catch (e) {
LogMessage.d("cancelBackup Platform Exception =", " $e");
} on Exception catch (e) {
LogMessage.d("cancelBackup Exception ", " $e");
}
}