TestDeviceVariant.tablets constructor
TestDeviceVariant.tablets({
- required String description,
Creates a TestDeviceVariant focused strictly on tablets and iPad dimensions.
Uses the device matrix defined in TestDevices.tablets.
Implementation
factory TestDeviceVariant.tablets({required String description}) {
return TestDeviceVariant._internal(
values: TestDevices.tablets,
description: description,
);
}