FText.base constructor

const FText.base(
  1. String content, {
  2. Key? key,
})

Implementation

const FText.base(String content, {super.key})
    : super(
        content,
        style: const TextStyle(
          fontSize: baseFontSize,
        ),
        softWrap: baseSoftWrap,
        overflow: baseSoftWrap ? null : TextOverflow.ellipsis,
      );