EdgeInsets operator ~/(double other)

Integer divides the EdgeInsets in each dimension by the given factor.

Source

EdgeInsets operator ~/(double other) {
  return new EdgeInsets.fromLTRB(
    (left ~/ other).toDouble(),
    (top ~/ other).toDouble(),
    (right ~/ other).toDouble(),
    (bottom ~/ other).toDouble()
  );
}