CallChainReply constructor

CallChainReply({
  1. String? txHash,
  2. List<int>? result,
})

Implementation

factory CallChainReply({
  $core.String? txHash,
  $core.List<$core.int>? result,
}) {
  final $result = create();
  if (txHash != null) {
    $result.txHash = txHash;
  }
  if (result != null) {
    $result.result = result;
  }
  return $result;
}