KeySpan constructor

const KeySpan({
  1. required String keyValue,
  2. TextStyle? style,
})

Implementation

const KeySpan({
  required this.keyValue,
  TextStyle? style,
}) : super(text: keyValue, style: style);