LightText constructor

const LightText({
  1. required String text,
  2. String lightText = "",
  3. TextStyle? textStyle,
  4. TextStyle? lightStyle,
})

Implementation

const LightText({
  required this.text,
  this.lightText = "",
  this.textStyle,
  this.lightStyle,
});