lateinit property bubbleOptions has not been initialized
dev.moaz.dash_bubble.src.BubbleService.onTaskRemoved (BubbleService.java:9)
I am getting this crashlytics error crash. Although I am checking if the permission is given before I called stopBubblefunction
void stopBubble() async {
if (await DashBubble.instance.hasOverlayPermission()) {
if (await DashBubble.instance.isRunning()) {
DashBubble.instance.stopBubble();
}
}
}
lateinit property bubbleOptions has not been initialized
dev.moaz.dash_bubble.src.BubbleService.onTaskRemoved (BubbleService.java:9)
I am getting this crashlytics error crash. Although I am checking if the permission is given before I called stopBubblefunction
void stopBubble() async {
if (await DashBubble.instance.hasOverlayPermission()) {
if (await DashBubble.instance.isRunning()) {
DashBubble.instance.stopBubble();
}
}
}