ListPopFrontResponse___Found constructor

ListPopFrontResponse___Found({
  1. List<int>? front,
  2. int? listLength,
})

Implementation

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