WatchResponse constructor
Implementation
factory WatchResponse({
$core.Iterable<Row>? rows,
Value? result,
$core.bool? singleResult,
}) {
final result$ = create();
if (rows != null) result$.rows.addAll(rows);
if (result != null) result$.result = result;
if (singleResult != null) result$.singleResult = singleResult;
return result$;
}