Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 533 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 533 Bytes

Properties

Load properties for dart.

img Dart CI

Usage

dependencies:
  props: ^1.0.0
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

LICENSE

MIT Style