connect method

  1. @override
void connect()
override

Method for connecting the file system.

Implementation

@override
void connect() {
  if (!root.existsSync()) {
    root.createSync();
  }
}