ListPopBackResponse___Found constructor

ListPopBackResponse___Found({
  1. List<int>? back,
  2. int? listLength,
})

Implementation

factory ListPopBackResponse___Found({
  $core.List<$core.int>? back,
  $core.int? listLength,
}) {
  final $result = create();
  if (back != null) {
    $result.back = back;
  }
  if (listLength != null) {
    $result.listLength = listLength;
  }
  return $result;
}