merge method

SpotlightStyle merge(
  1. SpotlightStyle? other
)

Merges other into this instance by overwriting values in this instance with values from other.

Implementation

SpotlightStyle merge(SpotlightStyle? other) => copyWith(
      radius: other?.radius,
      gradient: other?.gradient,
    );