merge method

Implementation

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

  return copyWith(
    hourMinuteColor: other.hourMinuteColor,
    hourMinuteTextColor: other.hourMinuteTextColor,
  );
}