isAdmin method

bool isAdmin(
  1. String uid
)

Whether the sone user is the admin

Implementation

bool isAdmin(String uid) {
  return adminId == uid;
}