keqv

Last updated:

0 purchases

keqv Image
keqv Images
Add to Cart

Description:

keqv

Simplest key=value coded implementation in Dart #
It provides conversion between key-value pair statements:
foo = bar
number = 23
unexisted =
correct = true
falseString = "false"
copied to clipboard
to Dart's Map object:
const result = {
"foo": "bar",
"number": 23
"unexisted": null,
"correct": true,
"falseString": "false"
};
copied to clipboard
Supported value type #

bool
num
Null
String

Format #
Key's naming scheme #
Name of keys must contains an alphanumeric string along with space, dollar sign and underscore characters only.
Force value storing as String #
Uses quote symbol to prevent values are decoded to num or bool.
License #
BSD-3

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.