getValueModified method

dynamic getValueModified(
  1. dynamic v,
  2. BuildContext context,
  3. int loop
)

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;
}