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