operator / method
- @override
override
Divides 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,
);
}