SymbolicLink.fromJson constructor
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?,
);
}