Configuration constructor

Configuration({
  1. required Size size,
  2. required double pixelRatio,
  3. required Orientation orientation,
  4. required String languageCode,
  5. required String? countryCode,
  6. required Brightness brightness,
  7. required PlatformType platform,
  8. required TextDirection direction,
})

Implementation

Configuration({
  required this.size,
  required this.pixelRatio,
  required this.orientation,
  required this.languageCode,
  required this.countryCode,
  required this.brightness,
  required this.platform,
  required this.direction,
});