paragraphSpacingOverrideTestValue property
Hides the real paragraph spacing and reports the given
paragraphSpacingOverrideTestValue instead.
ignore: avoid_setters_without_getters
Implementation
set paragraphSpacingOverrideTestValue(double? paragraphSpacingOverrideTestValue) {
_paragraphSpacingOverrideTestValue = paragraphSpacingOverrideTestValue;
if (paragraphSpacingOverrideTestValue == null) {
_forceParagraphSpacingOverrideToBeNull = true;
}
onMetricsChanged?.call();
}