StyleElement.fromText constructor

StyleElement.fromText(
  1. String textData, {
  2. String? name,
  3. String? combinator,
})

Implementation

StyleElement.fromText(String textData, {this.name, this.combinator})
  : style = StyleCSS.fromText(textData),
    width = null,
    theme = null,
    child = null,
    children = null;