style property

  1. @override
TextStyle? get style
override

The TextStyle to apply to this span.

The style is also applied to any child spans when this is an instance of TextSpan.

Implementation

@override
TextStyle? get style =>
    super.style ??
    _defaultStyle(
      color: color,
      fontSize: fontSize,
      isBold: isBold,
      fontWeight: fontWeight,
      overflow: overflow,
    );