FWText constructor

const FWText({
  1. Key? key,
  2. required String text,
  3. TextStyle? textStyle,
  4. bool? softWrap = false,
  5. TextAlign? textAlign,
})

Implementation

const FWText(
    {Key? key,
    required this.text,
    this.textStyle,
    this.softWrap = false,
    this.textAlign})
    : super(key: key);