methodCall method

Future methodCall(
  1. MethodCall call
)
inherited

Implementation

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