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