merge method

TextDecoration merge(
  1. TextDecoration? other
)

Implementation

TextDecoration merge(TextDecoration? other) {
  if (other == null) {
    return this;
  }
  return TextDecoration._(_mask | other._mask);
}