OutlineTextProps constructor

const OutlineTextProps({
  1. required String content,
  2. String? strokeColor,
  3. String? fillColor,
  4. String fontSize = '32px',
  5. String fontWeight = '700',
  6. double strokeWidth = 2,
})

Implementation

const OutlineTextProps({
  required this.content,
  this.strokeColor,
  this.fillColor,
  this.fontSize = '32px',
  this.fontWeight = '700',
  this.strokeWidth = 2,
});