@override Future<bool?> checkDefaultApp() async { try { final result = await methodChannel.invokeMethod('is_default_app'); return result; } on PlatformException catch (e) { return false; } }