NotifyResponse constructor

NotifyResponse({
  1. Iterable<NotifyResult>? results,
})

Implementation

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