getUserID method

String? getUserID()

Implementation

String? getUserID() {
  if (authResponse == null) return null;
  return authResponse!.userID;
}