baseLine method

T baseLine(
  1. TextBaseline textBaseline
)

Implementation

T baseLine(TextBaseline textBaseline) => copyWith(
      style: (style ?? const TextStyle()).copyWith(
        textBaseline: textBaseline,
      ),
    ) as T;