DrivenRadioStyle.from constructor

DrivenRadioStyle.from(
  1. RadioStyle? enabledStyle, {
  2. RadioStyle? selectedStyle,
  3. RadioStyle? focusedStyle,
  4. RadioStyle? hoveredStyle,
  5. RadioStyle? pressedStyle,
  6. RadioStyle? disabledStyle,
  7. bool? mergeResolved,
})

Create a DrivenRadioStyle with value from another RadioStyle.

Implementation

DrivenRadioStyle.from(
  RadioStyle? enabledStyle, {
  this.selectedStyle,
  this.focusedStyle,
  this.hoveredStyle,
  this.pressedStyle,
  this.disabledStyle,
  this.mergeResolved,
}) : super.from(enabledStyle);