hasDelete method

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

Gets Delete flag for given key and roles

Implementation

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