addText method

void addText(
  1. String text
)

Implementation

void addText(String text) {
  _content.children.add(ParagraphElement()
    ..classes.add('list-item__text')
    ..text = text);
}