term property

String? term

Returns the CSS term (if available).

Implementation

String? get term {
  final v = value;
  return v is css.LiteralTerm ? v.valueAsString : null;
}