hasAnyScope method

bool hasAnyScope(
  1. List<String> any
)

Returns true if at least one of any is present in scopes.

Implementation

bool hasAnyScope(List<String> any) => any.any(scopes.contains);