RootDirectory.fromJson constructor
Implementation
factory RootDirectory.fromJson(Map<String, dynamic> json) {
return RootDirectory(
creationInfo: json['CreationInfo'] != null
? CreationInfo.fromJson(json['CreationInfo'] as Map<String, dynamic>)
: null,
path: json['Path'] as String?,
);
}