setTextStyle method

void setTextStyle(
  1. TextStyle? textStyle
)

set text style

Implementation

void setTextStyle(TextStyle? textStyle) {
  _textStyle = textStyle;
  refresh();
  if (!_isLoading) {
    getMindMap()?.onChanged();
  }
}