isBold property

bool get isBold

Whether the cell's text is bold.

Implementation

bool get isBold {
  return _bold;
}
set isBold (bool bold)

Sets whether the cell's text is bold.

Implementation

set isBold(bool bold) {
  _bold = bold;
}