TestDeviceVariant constructor
TestDeviceVariant({
- required String description,
- Set<
DeviceVariantConfig> ? values,
Creates a TestDeviceVariant that executes tests against a custom set of devices,
or defaults to TestDevices.all if no values are provided.
Implementation
TestDeviceVariant({
required String description,
Set<DeviceVariantConfig>? values,
}) : values = values ?? TestDevices.all,
_description = description;