GetFolderPathResponse.fromJson constructor

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

Implementation

factory GetFolderPathResponse.fromJson(Map<String, dynamic> json) {
  return GetFolderPathResponse(
    path: json['Path'] != null
        ? ResourcePath.fromJson(json['Path'] as Map<String, dynamic>)
        : null,
  );
}