verifyMissedCall static method

dynamic verifyMissedCall({
  1. required String firstName,
  2. required String lastName,
})

Call this method after requestVerification to complete the verification if the number has to be verified with a missed call. i.e call this method only when you receive TcSdkCallbackResult.missedCallReceived in streamCallbackData. To complete verification, it is mandatory to pass firstName and lastName of the user

Implementation

static verifyMissedCall({required String firstName, required String lastName}) async =>
    await _methodChannel
        .invokeMethod('verifyMissedCall', {"fname": firstName, "lname": lastName});