ProtoPredefinedState_Identity_TxAddr constructor

ProtoPredefinedState_Identity_TxAddr({
  1. List<int>? hash,
  2. List<int>? address,
})

Implementation

factory ProtoPredefinedState_Identity_TxAddr({
  $core.List<$core.int>? hash,
  $core.List<$core.int>? address,
}) {
  final _result = create();
  if (hash != null) {
    _result.hash = hash;
  }
  if (address != null) {
    _result.address = address;
  }
  return _result;
}