ValueSpan constructor

const ValueSpan({
  1. required String value,
  2. TextStyle? style,
})

Implementation

const ValueSpan({
  required this.value,
  super.style,
}) : super(text: value);