flipped property

Implementation

DropDownLayoutPosition get flipped {
  switch (this) {
    case top:
      return bottom;
    case left:
      return right;
    case right:
      return left;
    case bottom:
      return top;
  }
}