TestDeviceVariant.desktop constructor

TestDeviceVariant.desktop({
  1. required String description,
})

Creates a TestDeviceVariant focused strictly on laptop and desktop monitors.

Uses the device matrix defined in TestDevices.desktop.

Implementation

factory TestDeviceVariant.desktop({required String description}) {
  return TestDeviceVariant._internal(
    values: TestDevices.desktop,
    description: description,
  );
}