operator * method
- @override
override
Scales the EdgeInsets in each dimension by the given factor.
Implementation
@override
EdgeInsets operator *(double other) {
return EdgeInsets.fromLTRB(
left * other,
top * other,
right * other,
bottom * other,
);
}