getValueModified method
Implementation
dynamic getValueModified(
dynamic v,
BuildContext context,
int loop,
) {
var value = v;
for (final e in formatOptionsHelper.options) {
value = _getValueModified(
value,
e,
context,
loop,
);
}
return value;
}