streamRetryMedia method
Implementation
@override
Future<String?> streamRetryMedia(String id) {
try {
return methodChannel.invokeMethod<String>('streamRetryMedia', {'id': id});
} on PlatformException catch (e) {
throw PlatformException(
code: 'RETRY_ERROR',
message: e.message,
details: e.toString(),
);
}
}