FRadioSelectGroupStyle.inherit constructor

FRadioSelectGroupStyle.inherit({
  1. required FRadioStyle style,
})

Creates a FRadioSelectGroupStyle that inherits its properties from the given parameters.

Implementation

FRadioSelectGroupStyle.inherit({required FRadioStyle style})
    : padding = const EdgeInsets.symmetric(vertical: 2),
      super(
        animationDuration: style.animationDuration,
        curve: style.curve,
        labelLayoutStyle: style.labelLayoutStyle,
        enabledStyle: style.enabledStyle,
        disabledStyle: style.disabledStyle,
        errorStyle: style.errorStyle,
      );