hasLocalPosition function

RelativePositionAssert hasLocalPosition(
  1. double left,
  2. double top,
  3. double right,
  4. double bottom,
  5. String parentTraitId,
)

Returns a RelativePositionAssert with the given position infos within the parents bounds.

Implementation

RelativePositionAssert hasLocalPosition(
  double left,
  double top,
  double right,
  double bottom,
  String parentTraitId,
) =>
    RelativePositionAssert.parent(
      traitId: parentTraitId,
      left: left,
      top: top,
      right: right,
      bottom: bottom,
    );