rowHeight method
Implementation
DefineMTextModifier rowHeight(double value) {
final DefineMTextModifier newModifierValue = this.copyWith(
valueStyle: this
.valueStyle
.copyWith(height: this.valueStyle.fontSize! / value));
return newModifierValue;
}