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