BatchCloseProducersResponse constructor

BatchCloseProducersResponse({
  1. String? status,
})

Implementation

factory BatchCloseProducersResponse({
  $core.String? status,
}) {
  final $result = create();
  if (status != null) {
    $result.status = status;
  }
  return $result;
}