PosixFilesystem.fromJson constructor

PosixFilesystem.fromJson(
  1. Map json_
)

Implementation

PosixFilesystem.fromJson(core.Map json_)
    : this(
        rootDirectory: json_.containsKey('rootDirectory')
            ? json_['rootDirectory'] as core.String
            : null,
      );