MutedText constructor

const MutedText({
  1. Key? key,
  2. required String title,
  3. double? fontSize,
  4. TextAlign textAlign = TextAlign.center,
  5. TextStyle? textStyle,
})

Implementation

const MutedText({
  super.key,
  required this.title,
  this.fontSize,
  this.textAlign = TextAlign.center,
  this.textStyle,
});