LabelOverlayOptions constructor

const LabelOverlayOptions({
  1. Alignment alignment = Alignment.bottomRight,
  2. bool rotate = true,
  3. required Widget label,
  4. bool hideOnEdit = false,
  5. EdgeInsets? margin,
})

Implementation

const LabelOverlayOptions({
  this.alignment = Alignment.bottomRight,
  this.rotate = true,
  required this.label,
  this.hideOnEdit = false,
  this.margin,
});