merge method

Implementation

BottomNavigationThemeData merge(BottomNavigationThemeData? other) {
  if (other == null) return this;
  return BottomNavigationThemeData(
    backgroundColor: other.backgroundColor ?? backgroundColor,
    selectedColor: other.selectedColor ?? selectedColor,
    inactiveColor: other.inactiveColor ?? inactiveColor,
  );
}