BdText constructor

const BdText(
  1. String text, {
  2. Key? key,
  3. double? size,
  4. Color? color,
  5. FontWeight? weight,
  6. List<Shadow>? shadows,
  7. String? fontFamily,
})

Implementation

const BdText(this.text,
    {Key? key,
    this.size,
    this.color,
    this.weight,
    this.shadows,
    this.fontFamily})
    : super(key: key);