MyWhiteText constructor

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

Implementation

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