DocumentServiceException.fromJson constructor
Implementation
factory DocumentServiceException.fromJson(Map<String, dynamic> json) {
return DocumentServiceException(
message: json['message'] as String?,
status: json['status'] as String?,
);
}