mirror of
https://github.com/Myzel394/quid_faciam_hodie.git
synced 2025-06-18 23:35:25 +02:00
11 lines
172 B
Dart
11 lines
172 B
Dart
bool? stringToBool(final String value) {
|
|
switch (value) {
|
|
case 'true':
|
|
return true;
|
|
case 'false':
|
|
return false;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|