getValueLeft method

double getValueLeft (
  1. TextStyleHtml tsh
)

Calculates the left value taking text direction into account.

Implementation

double getValueLeft(TextStyleHtml tsh) => (_left ??
        (tsh.textDirection == TextDirection.ltr ? inlineStart : inlineEnd))
    ?.getValue(tsh);