GetDocumentPathResponse.fromJson constructor

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

Implementation

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