merge method

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

Implementation

@override
UIIconThemeData merge(covariant UIIconThemeData? other) {
  return UIIconThemeData(
    iconSize: other?.iconSize ?? iconSize,
    containerSize: other?.containerSize ?? containerSize,
    foregroundColor: other?.foregroundColor ?? foregroundColor,
    backgroundColor: other?.backgroundColor ?? backgroundColor,
    borderRadius: other?.borderRadius ?? borderRadius,
    boxShadow: other?.boxShadow ?? boxShadow,
  );
}