ILPLayerConfig constructor

ILPLayerConfig({
  1. String? name,
  2. int? width,
  3. int? height,
  4. int? x,
  5. int? y,
  6. String? file,
  7. List<ILPLayerConfig>? layers,
})

Implementation

ILPLayerConfig({
  this.name,
  this.width,
  this.height,
  this.x,
  this.y,
  this.file,
  this.layers,
});