type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
| /* | |
| * I'm sure there's a better way to do this, but this solution works for me. | |
| * Recursively copies a directory + subdirectories into a target directory. | |
| * There's also no error handling. Have fun. | |
| */ | |
| import 'dart:io'; | |
| import 'package:path/path.dart' as path; | |
| Future<void> copyDirectory(Directory source, Directory destination) async { |