operator * method
- @override
override
Scales the Alignment in each dimension by the given factor.
Implementation
@override
FractionalOffset operator *(double other) {
return FractionalOffset(dx * other, dy * other);
}
Scales the Alignment in each dimension by the given factor.
@override
FractionalOffset operator *(double other) {
return FractionalOffset(dx * other, dy * other);
}