Computes the remainder in each dimension by the given factor.
Source
EdgeInsets operator %(double other) {
return new EdgeInsets.fromLTRB(
left % other,
top % other,
right % other,
bottom % other
);
}
Computes the remainder in each dimension by the given factor.
EdgeInsets operator %(double other) {
return new EdgeInsets.fromLTRB(
left % other,
top % other,
right % other,
bottom % other
);
}