PlatformSwitchSetting constructor

PlatformSwitchSetting({
  1. Key? key,
  2. required dynamic settingsKey,
  3. required dynamic title,
  4. bool? defaultValue,
  5. String? subtitle,
})

Implementation

PlatformSwitchSetting(
  {Key? key, required settingsKey, required title, bool? defaultValue, String? subtitle}
) : super(key: key, settingsKey: settingsKey, title: title, defaultValue: defaultValue, subtitle: subtitle);