hasLocalLocation function

RelativePositionAssert hasLocalLocation(
  1. double x,
  2. double y,
  3. String parentTraitId
)

Returns a RelativePositionAssert with the given location within the parents bounds.

Implementation

RelativePositionAssert hasLocalLocation(
  double x,
  double y,
  String parentTraitId,
) =>
    RelativePositionAssert.parent(traitId: parentTraitId, left: x, top: y);