authenticate method
Future<SessionAuthRequestResponse>
authenticate({
- required SessionAuthRequestParams params,
- String? pairingTopic,
- String? walletUniversalLink,
- List<
List< ? methods = const [[MethodConstants.WC_SESSION_AUTHENTICATE]],String> >
override
Implementation
@override
Future<SessionAuthRequestResponse> authenticate({
required SessionAuthRequestParams params,
String? pairingTopic,
String? walletUniversalLink,
List<List<String>>? methods = const [
[MethodConstants.WC_SESSION_AUTHENTICATE]
],
}) async {
try {
return reOwnSign.authenticate(
params: params,
walletUniversalLink: walletUniversalLink,
pairingTopic: pairingTopic,
methods: methods,
);
} catch (e) {
rethrow;
}
}