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.

example/main.dart

import 'package:keqv/keqv.dart';

void main() {
  const String mock = '''foo = bar
number = 3
''';

  print(keqv.decode(mock));

  const Map<String, dynamic> dummy = {"baz": "alice", "none": null};

  print(keqv.encode(dummy));
}
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