AddressTxRequest constructor

AddressTxRequest({
  1. ChainRef? blockchain,
  2. AnyAddress? address,
  3. String? cursor,
  4. int? limit,
  5. bool? onlyUnspent,
})

Implementation

factory AddressTxRequest({
  $0.ChainRef? blockchain,
  $0.AnyAddress? address,
  $core.String? cursor,
  $core.int? limit,
  $core.bool? onlyUnspent,
}) {
  final result = create();
  if (blockchain != null) result.blockchain = blockchain;
  if (address != null) result.address = address;
  if (cursor != null) result.cursor = cursor;
  if (limit != null) result.limit = limit;
  if (onlyUnspent != null) result.onlyUnspent = onlyUnspent;
  return result;
}