merge method

ContentOptions merge(
  1. ContentOptions? other
)

Implementation

ContentOptions merge(ContentOptions? other) {
  if (other == null) return this;
  return copyWith.$merge(other);
}