enterPIPMode method

  1. @override
void enterPIPMode(
  1. dynamic onSuccess(
    1. String success
    ),
  2. dynamic onError(
    1. CometChatCallsException e
    )
)
override

Implementation

@override
void enterPIPMode(onSuccess, onError) async {
  try {
    final result = await methodChannel.invokeMethod<String>('enterPIPMode');
    onSuccess(result ?? "success");
  } on PlatformException catch (platformException) {
    onError(CometChatCallsException(platformException.code,
        platformException.message, platformException.details));
  } catch (e) {
    onError(CometChatCallsException(
        CometChatCallsConstants.codeError, e.toString(), e.toString()));
  }
}