prefixTextBaseline method

NikuTextField prefixTextBaseline(
  1. TextBaseline textBaseline
)

The common baseline that should be aligned between this text span and its parent text span, or, for the root text spans, with the line box.

Equivalent to

TextStyle(textBaseline: input)

Implementation

NikuTextField prefixTextBaseline(TextBaseline textBaseline) {
  this._prefix_textBaseline = textBaseline;

  return this;
}