NotifyResponse constructor
NotifyResponse({
- Iterable<
NotifyResult> ? results,
Implementation
factory NotifyResponse({
$core.Iterable<NotifyResult>? results,
}) {
final $result = create();
if (results != null) {
$result.results.addAll(results);
}
return $result;
}