hasLeftOrRight property

bool hasLeftOrRight

Returns true if any of the left, right, inline measurements is set.

Implementation

bool get hasLeftOrRight =>
    inlineEnd?.isNotEmpty == true ||
    inlineStart?.isNotEmpty == true ||
    _left?.isNotEmpty == true ||
    _right?.isNotEmpty == true;