ProtoDeferredTxs_ProtoDeferredTx constructor

ProtoDeferredTxs_ProtoDeferredTx({
  1. List<int>? from,
  2. List<int>? to,
  3. List<int>? amount,
  4. List<int>? payload,
  5. List<int>? tips,
  6. Int64? block,
})

Implementation

factory ProtoDeferredTxs_ProtoDeferredTx({
  $core.List<$core.int>? from,
  $core.List<$core.int>? to,
  $core.List<$core.int>? amount,
  $core.List<$core.int>? payload,
  $core.List<$core.int>? tips,
  $fixnum.Int64? block,
}) {
  final _result = create();
  if (from != null) {
    _result.from = from;
  }
  if (to != null) {
    _result.to = to;
  }
  if (amount != null) {
    _result.amount = amount;
  }
  if (payload != null) {
    _result.payload = payload;
  }
  if (tips != null) {
    _result.tips = tips;
  }
  if (block != null) {
    _result.block = block;
  }
  return _result;
}