merge method

  1. @override
UIKeyValueThemeData merge(
  1. covariant UIKeyValueThemeData? other
)
override

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,
  );
}