merge method

  1. @Deprecated("'PushButton' no longer uses singular colors and therefore cannot " "be themed using a 'PushButtonTheme'.")
PushButtonThemeData merge(
  1. PushButtonThemeData? other
)

Merges this PushButtonThemeData with another.

Implementation

@Deprecated(
    "'PushButton' no longer uses singular colors and therefore cannot "
    "be themed using a 'PushButtonTheme'.")
PushButtonThemeData merge(PushButtonThemeData? other) {
  if (other == null) return this;
  return copyWith(
    color: other.color,
    disabledColor: other.disabledColor,
    secondaryColor: other.secondaryColor,
  );
}