focusedTextStyle property

set focusedTextStyle (TextStyle value)

Implementation

set focusedTextStyle(TextStyle value) {
  if (_focusedTextStyle == value) {
    return;
  }
  _focusedTextStyle = value;
  markNeedsLayout();
}