MerkleTree<T>.fromJson constructor
Creates tree from JSON representation
Implementation
factory MerkleTree.fromJson(
Map<String, dynamic> json,
String Function(T) hashFunction,
) {
// Note: This is a simplified reconstruction
// Full reconstruction would require the complete tree structure
return MerkleTree<T>(hashFunction: hashFunction);
}