merge method

MixThemeData merge(
  1. MixThemeData other
)

Implementation

MixThemeData merge(MixThemeData other) {
  return MixThemeData.raw(
    textStyles: textStyles.merge(other.textStyles),
    colors: colors.merge(other.colors),
    breakpoints: breakpoints.merge(other.breakpoints),
    radii: radii.merge(other.radii),
    spaces: spaces.merge(other.spaces),
  );
}