TextItem constructor

TextItem({
  1. required String text,
  2. TextStyle? textStyle,
})

Implementation

TextItem({
  required this.text,
  this.textStyle,
});