WindowResizeEvent constructor

const WindowResizeEvent(
  1. int heightChars,
  2. int widthChars, [
  3. int heightPixels = 0,
  4. int widthPixels = 0,
])

Constructs a new instance of WindowResizeEvent.

Implementation

const WindowResizeEvent(
  this.heightChars,
  this.widthChars, [
  this.heightPixels = 0,
  this.widthPixels = 0,
]);