ChainHeadOperationCallDone.fromJson constructor
Implementation
factory ChainHeadOperationCallDone.fromJson(Map<String, dynamic> json) {
return ChainHeadOperationCallDone(
operationId: json['operationId'] as String,
output: json['output'] as String,
);
}