bottom method

double bottom(
  1. Offset delta
)

Implementation

double bottom(Offset delta) => switch (this) {
  bottomLeft || bottomRight => delta.dy,
  _ => 0,
};