clearPermission static method

void clearPermission({
  1. bool hasCTV = false,
})

Implementation

static void clearPermission({bool hasCTV = false}) {
  if (hasCTV) Constants().contributeRole = null;
  else {
    Constants().permission = null;
    Constants().userId = null;
  }
}