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