removeShadowToken method

void removeShadowToken(
  1. String name
)

Removes a shadow design token from the target project by name.

Design tokens are not declared via the DSL, so no declaration-conflict check is performed.

Implementation

void removeShadowToken(String name) {
  _rawMutations.add(
    (project) => design_token_helpers.removeShadowToken(project, name: name),
  );
}