MapLayer constructor

MapLayer({
  1. int? id,
  2. String? name,
  3. String? layerClass,
  4. TypeLayer? type,
  5. bool? visible,
  6. double? x,
  7. double? y,
  8. double? opacity,
})

Implementation

MapLayer({
  this.id,
  this.name,
  this.layerClass,
  this.type,
  this.visible,
  this.x,
  this.y,
  this.opacity,
});