expand_path 0.0.10
expand_path: ^0.0.10 copied to clipboard
Bash-like tilde expansion for dart. Expands a leading tilde in a file path to the user home directory
import 'package:expand_path/expand_path.dart';
void main() {
print(expandPath('~')); // '/Users/kasper'
}