LayerPosition constructor

LayerPosition({
  1. String? above,
  2. String? below,
  3. int? at,
})

Implementation

LayerPosition({
  this.above,
  this.below,
  this.at,
});