hasUpdate method

bool hasUpdate(
  1. String key, {
  2. List<int>? roleIds,
})

Gets Update flag for given key and roles

Implementation

bool hasUpdate(String key, {List<int>? roleIds}) {
  return _has(key, roleIds, UPDATE);
}