DescriptionView constructor

const DescriptionView({
  1. Key? key,
  2. required String desc,
  3. TextAlign? textAlign,
  4. TextStyle? textStyle,
})

Implementation

const DescriptionView({
  super.key,
  required this.desc,
  this.textAlign,
  this.textStyle,
});