cancelInviteByPhone method
Cancel the invitation that is being called out by phone.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> cancelInviteByPhone() async {
  return await methodChannel
      .invokeMethod<String>('cancelInviteByPhone')
      .then<String>((String? value) => value ?? "");
}