checkAuth method

Future<Res> checkAuth(
  1. List<String>? groups
)

Implementation

Future<Res> checkAuth(List<String>? groups) {
  NawahDI.get<INawahLogger>()?.log(this, 'attempting checkAuth');

  Future<Res> call = reauth(null, null, groups);
  return call;
}