value property

Expression? value

Returns the CSS expression.

If there are more than one, null will be returned.

Implementation

css.Expression? get value {
  final list = values;
  return list.length == 1 ? list.first : null;
}