appLaunchedFromMissedCall method
This method is used to get whether the app is launched from missed call.
Implementation
@override
Future<bool?> appLaunchedFromMissedCall() async {
bool? res;
try {
res = await mirrorFlyMethodChannel
.invokeMethod<bool>('appLaunchedFromMissedCall');
LogMessage.d('appLaunchedFromMissedCall', '$res');
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}