LabeledImage constructor

LabeledImage({
  1. TouchBarImage? image,
  2. String? label,
  3. ImagePosition? imagePosition,
})

Creates an instance of a LabeledImage with the given image, label and imagePosition.

Implementation

LabeledImage({
  this.image,
  this.label,
  this.imagePosition,
});