vdfEncode function

String vdfEncode(
  1. Map<String, dynamic> input
)

Encodes input using Valve's KeyValue format (VDF) encoding.

Shorthand for vdf.encode(input). Useful if a local variable shadows the global vdf constant.

Implementation

String vdfEncode(Map<String, dynamic> input) => vdf.encode(input);