AppTranslatedTextView constructor

const AppTranslatedTextView({
  1. Key? key,
  2. required String txt,
  3. TextStyle? style,
  4. TextAlign? textAlign,
  5. TextDirection? textDirection,
})

Implementation

const AppTranslatedTextView({
  super.key,
  required this.txt,
  this.style,
  this.textAlign,
  this.textDirection,
});