startAlign property

Alignment startAlign

Implementation

Alignment get startAlign {
  switch (this) {
    case top:
      return const Alignment(0, 0.3);
    case left:
      return const Alignment(0.3, 0);
    case right:
      return const Alignment(-0.3, 0);
    case bottom:
      return const Alignment(0, -0.3);
  }
}