Screen.constructor constructor

Screen.constructor({
  1. int colorDepth = 24,
  2. int height = 800,
  3. bool keepAwake = false,
  4. int width = 600,
})

Implementation

Screen.constructor({
  this.colorDepth = 24,
  this.height = 800,
  this.keepAwake = false,
  this.width = 600,
});