HashSigned constructor

HashSigned({
  1. String? id,
  2. List<int>? pvtSign,
  3. List<int>? imgSign,
})

Implementation

factory HashSigned({
  $core.String? id,
  $core.List<$core.int>? pvtSign,
  $core.List<$core.int>? imgSign,
}) {
  final _result = create();
  if (id != null) {
    _result.id = id;
  }
  if (pvtSign != null) {
    _result.pvtSign = pvtSign;
  }
  if (imgSign != null) {
    _result.imgSign = imgSign;
  }
  return _result;
}