SettingsRow constructor

SettingsRow({
  1. required String title,
  2. required dynamic value,
  3. required IconData icon,
  4. required Function? save,
  5. required String formType,
  6. required SettingsBindingTransition transition,
  7. String? textValue,
})

Implementation

SettingsRow({
  required this.title,
  required this.value,
  required this.icon,
  required this.save,
  required this.formType,
  required this.transition,
  this.textValue,
});