stopRemoteView method

Future<void> stopRemoteView(
  1. String userId
)

Implementation

Future<void> stopRemoteView(String userId) async {
  final params = [userId];
  _callEngineSDK.Dart_CallEngineCallAPI(
      'stopRemoteView'.toNativeUtf8().cast(),
      jsonEncode(params).toNativeUtf8().cast(),
      ''.toNativeUtf8().cast());
}