RegionInfo constructor

RegionInfo({
  1. int x = 0,
  2. int y = 0,
  3. int w = 0,
  4. int h = 0,
  5. int zorder = 0,
})

Implementation

RegionInfo({
  this.x = 0,
  this.y = 0,
  this.w = 0,
  this.h = 0,
  this.zorder = 0,
});