dev
dart 3 lines 82 Bytes
Raw
1 bool parseBoolFromString(String string) {
2 return string.toString() == 'true';
3 }