copyWith method

Implementation

RadioButtonThemeData copyWith(RadioButtonThemeData? style) {
  return RadioButtonThemeData(
    cursor: style?.cursor ?? cursor,
    animationCurve: style?.animationCurve ?? animationCurve,
    animationDuration: style?.animationDuration ?? animationDuration,
    checkedDecoration: style?.checkedDecoration ?? checkedDecoration,
    uncheckedDecoration: style?.uncheckedDecoration ?? uncheckedDecoration,
  );
}