isRepeated method
Implementation
@override
Future<bool?> isRepeated(String playerReference) async {
try {
return await methodChannel.invokeMethod<bool>('isRepeated', {'playerReference': playerReference});
} on PlatformException catch (e) {
debugPrint('Failed to check if video is repeated: ${e.message}');
rethrow;
}
}