GetSlpGraphSearchResponse constructor

GetSlpGraphSearchResponse({
  1. Iterable<List<int>>? txdata,
})

Implementation

factory GetSlpGraphSearchResponse({
  $core.Iterable<$core.List<$core.int>>? txdata,
}) {
  final _result = create();
  if (txdata != null) {
    _result.txdata.addAll(txdata);
  }
  return _result;
}