streamRetryMedia method

  1. @override
Future<String?> streamRetryMedia(
  1. String id
)
override

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(),
    );
  }
}