methodCall method
Implementation
Future methodCall(MethodCall call) async {
if (call.method == 'startRealPlayError') {
final result = call.arguments;
if (_errorCallback != null) {
_changeMediaStatusWithCode(result['code']);
_errorCallback!(result['code']);
}
}
}