masamune_core 0.2.13+5 masamune_core: ^0.2.13+5 copied to clipboard
Library that provides the core part of the Masamune framework. It provides Path map, data management, task management and utility.
import 'package:masamune_core/masamune_core.dart';
void main() async {
await Config.init();
DataField("name", "mathru");
String name = PathMap.get<String>("name");
print(name);
}