keqv 2.0.0 copy "keqv: ^2.0.0" to clipboard
keqv: ^2.0.0 copied to clipboard

Convert the simplest file data format key=value between string and map.

Simplest key=value coded implementation in Dart #

It provides conversion between key-value pair statements:

foo = bar
number = 23
unexisted = 
correct = true
falseString = "false"

to Dart's Map object:

const result = {
    "foo": "bar",
    "number": 23
    "unexisted": null,
    "correct": true,
    "falseString": "false"
};

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

0
likes
140
pub points
0%
popularity

Publisher

verified publisherrk0cc.xyz

Convert the simplest file data format key=value between string and map.

Repository (GitHub)
View/report issues

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

BSD-3-Clause (LICENSE)

Dependencies

meta

More

Packages that depend on keqv