ChainHeadOperationCallDone.fromJson constructor

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

Implementation

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