MyBlackText constructor

const MyBlackText(
  1. String? text, {
  2. Key? key,
  3. num size = 14,
  4. FontWeight? weight,
  5. int darkLevel = 1,
  6. int maxLen = 0,
  7. int lines = 1,
})

Implementation

const MyBlackText(this.text,
    {Key? key,
    this.size = 14,
    this.weight,
    this.darkLevel = 1,
    this.maxLen = 0,
    this.lines = 1})
    : super(key: key);