Transaction_ERC1155Transfer constructor

Transaction_ERC1155Transfer({
  1. String? from,
  2. String? to,
  3. List<int>? tokenId,
  4. List<int>? value,
  5. List<int>? data,
})

Implementation

factory Transaction_ERC1155Transfer({
  $core.String? from,
  $core.String? to,
  $core.List<$core.int>? tokenId,
  $core.List<$core.int>? value,
  $core.List<$core.int>? data,
}) {
  final _result = create();
  if (from != null) {
    _result.from = from;
  }
  if (to != null) {
    _result.to = to;
  }
  if (tokenId != null) {
    _result.tokenId = tokenId;
  }
  if (value != null) {
    _result.value = value;
  }
  if (data != null) {
    _result.data = data;
  }
  return _result;
}