NeumorphicRadio<T> constructor

NeumorphicRadio<T>({
  1. Widget? child,
  2. NeumorphicRadioStyle style = const NeumorphicRadioStyle(),
  3. T? value,
  4. Curve curve = Neumorphic.DEFAULT_CURVE,
  5. Duration duration = Neumorphic.DEFAULT_DURATION,
  6. EdgeInsets padding = EdgeInsets.zero,
  7. T? groupValue,
  8. NeumorphicRadioListener<T?>? onChanged,
  9. bool isEnabled = true,
})

Implementation

NeumorphicRadio({
  this.child,
  this.style = const NeumorphicRadioStyle(),
  this.value,
  this.curve = Neumorphic.DEFAULT_CURVE,
  this.duration = Neumorphic.DEFAULT_DURATION,
  this.padding = EdgeInsets.zero,
  this.groupValue,
  this.onChanged,
  this.isEnabled = true,
});