merge method

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

Implementation

@override
UIBadgeThemeData merge(covariant UIBadgeThemeData? other) {
  return UIBadgeThemeData(
    color: other?.color ?? color,
    textStyle: other?.textStyle ?? textStyle,
  );
}