operator / method
- @override
 
override
    Divides the AlignmentDirectional in each dimension by the given factor.
Implementation
@override
AlignmentDirectional operator /(double other) {
  return AlignmentDirectional(start / other, y / other);
}
    Divides the AlignmentDirectional in each dimension by the given factor.
@override
AlignmentDirectional operator /(double other) {
  return AlignmentDirectional(start / other, y / other);
}