apply property

void apply=(NikuRadioListTile? v)
override

Implementation

set apply(NikuRadioListTile? v) {
  if (v == null) return;

  value = v.value ?? value;
  groupValue = v.groupValue ?? groupValue;
  onChanged = v.onChanged ?? onChanged;
  toggleable = v.toggleable ?? toggleable;
  activeColor = v.activeColor ?? activeColor;
  title = v.title ?? title;
  subtitle = v.subtitle ?? subtitle;
  secondary = v.secondary ?? secondary;
  isThreeLine = v.isThreeLine ?? isThreeLine;
  dense = v.dense ?? dense;
  selected = v.selected ?? selected;
  controlAffinity = v.controlAffinity ?? controlAffinity;
  autofocus = v.autofocus ?? autofocus;
  contentPadding = v.contentPadding ?? contentPadding;
  shape = v.shape ?? shape;
  tileColor = v.tileColor ?? tileColor;
  selectedTileColor = v.selectedTileColor ?? selectedTileColor;
  visualDensity = v.visualDensity ?? visualDensity;
  focusNode = v.focusNode ?? focusNode;
  enableFeedback = v.enableFeedback ?? enableFeedback;

  $parent..$merge(v.$parent);
}