isClient static method

bool isClient(
  1. WardenType? wardenType
)

Implementation

static bool isClient(WardenType? wardenType) {
  return (wardenType == WardenType.USER || wardenType == WardenType.ADMIN);
}