AbsoluteTxPosition constructor

AbsoluteTxPosition({
  1. Int64? blockHeight,
  2. Int64? txIndex,
})

Implementation

factory AbsoluteTxPosition({
  $fixnum.Int64? blockHeight,
  $fixnum.Int64? txIndex,
}) {
  final _result = create();
  if (blockHeight != null) {
    _result.blockHeight = blockHeight;
  }
  if (txIndex != null) {
    _result.txIndex = txIndex;
  }
  return _result;
}