SettingsURLConfig constructor

SettingsURLConfig({
  1. dynamic title,
  2. dynamic unit = '',
  3. required String url,
})

Config for a setting widget which will open an URL if clicked

Implementation

SettingsURLConfig({title, unit = '', required this.url})
    : super(type: SettingDataType.kWidgetUrlData, title: title, unit: unit);