CarpenterProgress constructor

const CarpenterProgress({
  1. Key? key,
  2. double? value,
  3. LengthUnit height = const Rem(.25),
  4. String semanticLabel = 'Progress',
})

Implementation

const CarpenterProgress({
  super.key,
  this.value,
  this.height = const Rem(.25),
  this.semanticLabel = 'Progress',
});