NeoText constructor

const NeoText(
  1. String value, {
  2. Key? key,
  3. FontWeight? fontWeight = FontWeight.w700,
  4. double? fontSize = 14,
})

Implementation

const NeoText(
    this.value, {
      Key? key,
      this.fontWeight = FontWeight.w700,
      this.fontSize = 14,
    }) : super(key: key);