MapLayer constructor

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

Implementation

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