SettingsSwitchTileIos constructor

const SettingsSwitchTileIos({
  1. Key? key,
  2. required String title,
  3. required Function onChanged,
  4. required bool value,
  5. String subTitle = "",
  6. Icon? icon,
  7. Color? activeColor,
  8. Color? thumbColor,
  9. Color? trackColor,
})

Implementation

const SettingsSwitchTileIos(
    {Key? key,
    required this.title,
    required this.onChanged,
    required this.value,
    this.subTitle = "",
    this.icon,
    this.activeColor,
    this.thumbColor,
    this.trackColor})
    : super(key: key);