merge method
Implementation
@override
UIKeyValueThemeData merge(covariant UIKeyValueThemeData? other) {
return UIKeyValueThemeData(
fullSpacing: other?.fullSpacing ?? fullSpacing,
compactSpacing: other?.compactSpacing ?? compactSpacing,
compactTitleStyle: other?.compactTitleStyle ?? compactTitleStyle,
compactTextStyle: other?.compactTextStyle ?? compactTextStyle,
fullTitleStyle: other?.fullTitleStyle ?? fullTitleStyle,
fullTextStyle: other?.fullTextStyle ?? fullTextStyle,
);
}