nestedPrefixFor method

String? nestedPrefixFor(
  1. NestedResult table
)

Implementation

String? nestedPrefixFor(NestedResult table) {
  if (_expandedNestedPrefixes == null) {
    var index = 0;
    _expandedNestedPrefixes = {
      for (final nested in nestedResults) nested: 'nested_${index++}',
    };
  }

  return _expandedNestedPrefixes![table];
}