RadioThemeData.from constructor

RadioThemeData.from([
  1. RadioThemeData? other
])

Creates a RadioThemeData from another one that probably null.

Implementation

RadioThemeData.from([RadioThemeData? other])
    : curve = other?.curve ?? fallback.curve,
      duration = other?.duration ?? fallback.duration,
      style = other?.style ?? fallback.style;