isAdmin method

bool isAdmin(
  1. String side
)

Implementation

bool isAdmin(String side) {
  return isOwner(side) || isApprover(side);
}