SelfStoringRadioGroup<K> constructor

SelfStoringRadioGroup<K>(
  1. K itemKey, {
  2. Key? key,
  3. dynamic saver,
  4. dynamic overlayController,
  5. SelfStoringRadioGroupStyle style = const SelfStoringRadioGroupStyle(),
  6. required Map<Object, String> items,
  7. Object? defaultValue,
  8. bool isUnselectable = false,
})

Implementation

SelfStoringRadioGroup(
  this.itemKey, {
  Key? key,
  saver,
  overlayController,
  this.style = const SelfStoringRadioGroupStyle(),
  required this.items,
  this.defaultValue,
  this.isUnselectable = false,
})  : overlayController = overlayController ?? OverlayController(),
      this.saver = saver ?? NoOpSaver<K>(),
      super(key: key);