under method
Paint this underneath other — other 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);
}