createIfNotExists method

Future<Directory> createIfNotExists()

Implementation

Future<Directory> createIfNotExists() async {
  if (!await exists()) await create(recursive: true);
  return this;
}