buildKeyValuePair method

TomlKeyValuePair buildKeyValuePair(
  1. MapEntry entry
)

Builds a key value pair from the given map entry.

Implementation

TomlKeyValuePair buildKeyValuePair(MapEntry entry) => TomlKeyValuePair(
      TomlKey([buildSimpleKey(entry.key)]),
      buildValue(entry.value),
    );