bold method

Text bold()

A modifier that sets its Text's font to bold.

Example:

Text('Hello, World!')
    .bold();

Implementation

Text bold() {
  return this.font(weight: FontWeight.bold);
}