TestDeviceInfo class

Container class for the device information for the device the test is being executed on.

Implemented types
Annotations
  • @immutable

Constructors

TestDeviceInfo.custom({required String appIdentifier, required String brand, required String buildNumber, required String device, String? deviceGroup, double? devicePixelRatio, BaseSize? dips, required String id, String? launchId, required String manufacturer, required String model, required String os, String? orientation, bool physicalDevice = true, BaseSize? pixels, required String systemVersion})
TestDeviceInfo.unknown()
factory

Properties

appIdentifier String
final
brand String
final
buildNumber String
final
device String
final
deviceGroup String?
final
devicePixelRatio double?
final
deviceSignature String
no setter
dips BaseSize?
final
hashCode int
The hash code for this object.
no setterinherited
id String
final
launchId String
final
manufacturer String
final
model String
final
orientation String?
final
os String
final
physicalDevice bool
final
pixels BaseSize?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
systemVersion String
final

Methods

compareTo(TestDeviceInfo other) int
Compares this object to another object.
override
copyWith({String? appIdentifier, String? brand, String? buildNumber, String? device, String? deviceGroup, double? devicePixelRatio, BaseSize? dips, String? id, String? launchId, String? manufacturer, String? model, String? orientation, String? os, bool? physicalDevice, BaseSize? pixels, String? systemVersion}) TestDeviceInfo
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Abstract function that concrete classes must implement. This must encode the internal data model to a JSON compatible representation.
toString() String
Returns the string encoded JSON representation for this class. This will remove all null values and empty collections from the returned string.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

instance TestDeviceInfo?
getter/setter pair

Static Methods

fromDynamic(dynamic map) TestDeviceInfo