getLeft method

CssLength? getLeft(
  1. InheritedProperties resolved
)

Calculates the left length taking text direction into account.

Implementation

CssLength? getLeft(InheritedProperties resolved) =>
    _left ?? (resolved.isRtl ? _inlineEnd : _inlineStart);