closeIMCommectionAndRemoveObserver method

Future closeIMCommectionAndRemoveObserver(
  1. dynamic params
)

Implementation

Future<dynamic> closeIMCommectionAndRemoveObserver(params) async {
  try {
    final result = sobotMethodChannel.invokeMethod(closeIMCommectionAndRemoveObserverMethod,params);
    return result;
  } on PlatformException catch (e) {
    print(e);
    //抛出异常
    return {};
  }
}