streamResumeMedia method

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

Implementation

@override
Future<String?> streamResumeMedia(String id) {
  try {
    return methodChannel
        .invokeMethod<String>('streamResumeMedia', {'id': id});
  } catch (e) {
    rethrow;
  }
}