values property

List<Expression> values

Returns CSS expressions.

Collecting expressions is a non-trivial task but the result is cached so it's safe to call this again and again.

Implementation

List<css.Expression> get values {
  final scoped = expression;
  if (scoped is css.Expressions) {
    return scoped.expressions;
  }

  return const [];
}