vdfDecode function

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

Decodes Valve's KeyValue format (VDF) encoded string.

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

Implementation

Map<String, dynamic> vdfDecode(String input) => vdf.decode(input);