approveSessionAuthenticate method
Implementation
@override
Future<ApproveResponse> approveSessionAuthenticate({
required int id,
List<Cacao>? auths,
}) async {
try {
return await reOwnSign.approveSessionAuthenticate(id: id, auths: auths);
} catch (e) {
rethrow;
}
}