TomlInlineTable constructor

TomlInlineTable(
  1. Iterable<TomlKeyValuePair> pairs
)

Creates a new inline table.

Implementation

TomlInlineTable(Iterable<TomlKeyValuePair> pairs)
    : pairs = List.unmodifiable(pairs);