TextValue constructor

TextValue(
  1. List<String> styles,
  2. String text
)

Implementation

TextValue(List<String> styles, String text) {
  this.styles = styles;
  this.text = text;
}