TextStylePreview constructor

const TextStylePreview({
  1. Key? key,
  2. required Text child,
  3. bool enabled = true,
  4. TypeScaleCategory initTypeScaleCategory = TypeScaleCategory.bodyMedium,
  5. TextStyleConverter? applyCustomStyle,
  6. TextStylePreviewStyle? style,
})

Implementation

const TextStylePreview({
  super.key,
  required this.child,
  this.enabled = true,
  this.initTypeScaleCategory = TypeScaleCategory.bodyMedium,
  this.applyCustomStyle,
  this.style,
});