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