fix: add newlines after device info entries for debug info (#3008)

This commit is contained in:
Harmon 2023-07-16 21:06:43 -05:00 committed by GitHub
parent 1b582c3870
commit 70915df5ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,7 +117,7 @@ class _DebugToast {
final deviceInfo = await deviceInfoPlugin.deviceInfo;
return deviceInfo.data.entries
.fold('', (prev, el) => "$prev${el.key}: ${el.value}");
.fold('', (prev, el) => "$prev${el.key}: ${el.value}\n");
}
Future<String> _getDocumentPath() async {