merge method

Implementation

RadioButtonThemeData merge(RadioButtonThemeData? style) {
  return RadioButtonThemeData(
    checkedDecoration: style?.checkedDecoration ?? checkedDecoration,
    uncheckedDecoration: style?.uncheckedDecoration ?? uncheckedDecoration,
    foregroundColor: style?.foregroundColor ?? foregroundColor,
  );
}