fromSettingsView method

SettingsViewController fromSettingsView(
  1. SettingsView view
)

Implementation

SettingsViewController fromSettingsView(SettingsView view) {
  super.fromView(view);
  title = view.title;
  summary = view.summary;
  summaryState = view.summaryState;
  icon = view.icon;
  iconSize = view.iconSize;
  iconTint = view.iconTint;
  type = view.type;
  arrowConfig = view.arrowConfig;
  checkmarkConfig = view.checkmarkConfig;
  switchConfig = view.switchConfig;
  return this;
}