Device constructor
const
Device({
- required Size size,
- required String name,
- required DisplaySize displaySize,
- required DevicePlatform platform,
- double devicePixelRatio = 1.0,
- double textScale = 1.0,
- Brightness brightness = Brightness.light,
- 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),
});