under method

Style under(
  1. Style? other
)

Paint this underneath otherother wins where it sets a value. Mnemonic: bottom.under(top). Equivalent to other.over(this).

Implementation

Style under(Style? other) {
  if (other == null) return this;
  return other.over(this);
}