merge method

Implementation

ZeroDividerStyle merge(ZeroDividerStyle? other) {
  if (other == null) return this;

  return copyWith(
    color: other.color,
    size: other.size,
    startInset: other.startInset,
    endInset: other.endInset,
  );
}