getWebAuthURLForLogin method

Future<String> getWebAuthURLForLogin(
  1. {required String sessionId,
  2. required String loginEncryptionPublicKey,
  3. String? partnerId,
  4. String? newDeviceSessionId,
  5. String? newDeviceEncryptionKey}
)

Gets the URL that should be used for web authentication.

Implementation

Future<String> getWebAuthURLForLogin({
  required String sessionId,
  required String loginEncryptionPublicKey,
  String? partnerId,
  String? newDeviceSessionId,
  String? newDeviceEncryptionKey,
}) async {
  return await _postMessage('getWebAuthURLForLogin', [
    sessionId,
    loginEncryptionPublicKey,
    partnerId,
    newDeviceSessionId,
    newDeviceEncryptionKey
  ]);
}