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});
  } on PlatformException catch (e) {
    throw PlatformException(
      code: 'RESUME_ERROR',
      message: e.message,
      details: e.toString(),
    );
  }
}