@override Future<bool?> isPlaying() async { try { return await methodChannel.invokeMethod<bool>('isPlaying'); } catch (e) { if (kDebugMode) { print(e); } // rethrow; return false; } }