SymbolicLink.fromJson constructor

SymbolicLink.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory SymbolicLink.fromJson(Map<String, dynamic> json) {
  return SymbolicLink(
    absolutePath: json['absolutePath'] as String?,
    blobId: json['blobId'] as String?,
    fileMode: (json['fileMode'] as String?)?.toFileModeTypeEnum(),
    relativePath: json['relativePath'] as String?,
  );
}