textHeight property

double textHeight

Implementation

double get textHeight => _textHeight;
void textHeight=(double value)

Implementation

set textHeight(double value) {
  var result = _groupCodes.firstWhereOrNull((element) => element.code == 40);
  if (result != null) {
    _textHeight = value;
    result.value = value;
  }
}