Device constructor

const Device({
  1. required Size size,
  2. required String name,
  3. required DisplaySize displaySize,
  4. required DevicePlatform platform,
  5. double devicePixelRatio = 1.0,
  6. double textScale = 1.0,
  7. Brightness brightness = Brightness.light,
  8. EdgeInsets safeArea = const EdgeInsets.all(0),
})

This Device is a configuration for golden test. Can be provided for multiScreenGolden

Implementation

const Device({
  required this.size,
  required this.name,
  required this.displaySize,
  required this.platform,
  this.devicePixelRatio = 1.0,
  this.textScale = 1.0,
  this.brightness = Brightness.light,
  this.safeArea = const EdgeInsets.all(0),
});