internalSetMethodCallARDelegate method

void internalSetMethodCallARDelegate(
  1. dynamic delegate(
    1. InternalCall call
    )
)

Set a native MethodCall delegate. Do not use this method as it is intended for internal use by the Situm AR module (that you will find on the situm_flutter_ar package).

Implementation

void internalSetMethodCallARDelegate(Function(InternalCall call) delegate) {
  _internalMethodCallDelegates.arDelegate = delegate;
}