TextRow constructor

const TextRow({
  1. Key? key,
  2. required String value,
  3. TextStyle? textStyle,
})

Implementation

const TextRow({
  super.key,
  required this.value,
  this.textStyle,
});