Files
windows-application/lib/utils/ini_utils.dart
2026-01-22 15:14:27 +08:00

9 lines
196 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'package:ini/ini.dart';
/// 解析 INI 字符串为 Config
Config parseIni(String content) {
// 对于 ini 2.xfromString 接受完整字符串
return Config.fromString(content);
}