AppWidgets constructor

const AppWidgets({
  1. Key? key,
  2. required DeviceInfo? deviceInfo,
  3. required AppInfo appInfo,
  4. bool isChangeBrightness = true,
})

Implementation

const AppWidgets({
  Key? key,
  required this.deviceInfo,
  required this.appInfo,
  this.isChangeBrightness = true,
}) : super(key: key);