CSSEntry<V extends CSSValue> constructor

CSSEntry<V extends CSSValue>(
  1. String name,
  2. V? value, {
  3. V? sampleValue,
  4. String? comment,
})

Implementation

CSSEntry(String name, V? value, {V? sampleValue, String? comment})
    : this._(normalizeName(name)!, value,
          sampleValue: sampleValue, comment: comment);