startRemoteView method

Future<void> startRemoteView(
  1. String userId,
  2. int? viewId
)

Implementation

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