0 purchases
props
Properties #
Load properties for dart.
Usage #
dependencies:
props: ^2.0.0-nullsafety
copied to clipboard
import 'package:props/props.dart';
final text = '''
#This is comment
version=1.0.0
name=properties
name=ppp
#comment=1
'''
final props = Properties.loadString(text);
print(props['version']); // 1.0.0
print(props['name']); // properties
copied to clipboard
LICENSE #
MIT Style
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.