approveSessionAuthenticate method

  1. @override
Future<ApproveResponse> approveSessionAuthenticate({
  1. required int id,
  2. List<Cacao>? auths,
})
override

Implementation

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