removeSpacingToken method

void removeSpacingToken(
  1. String name
)

Removes a spacing 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 removeSpacingToken(String name) {
  _rawMutations.add(
    (project) => design_token_helpers.removeSpacingToken(project, name: name),
  );
}