b method

Para b (
  1. String text
)

Add a new section containing bold text to the Para instance.

allows chaining.

Implementation

Para b(String text) {
  this._list.add(TextSpan(text:text,style:TextStyle(fontWeight:FontWeight.bold)));
  return this;
}