copyWith method

HelpButtonThemeData copyWith({
  1. Color? color,
  2. Color? disabledColor,
})

Copies one HelpButtonThemeData to another.

Implementation

HelpButtonThemeData copyWith({
  Color? color,
  Color? disabledColor,
}) {
  return HelpButtonThemeData(
    color: color ?? this.color,
    disabledColor: disabledColor ?? this.disabledColor,
  );
}