ProtoPullPushHash constructor

ProtoPullPushHash({
  1. int? type,
  2. List<int>? hash,
})

Implementation

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