blob: bfdc806e56df69dc3a62c30f4e418a6f62bd8f98 [file] [log] [blame] [view] [edit]
# EventPairPair constructor
EventPairPair()
## Implementation
```dart
factory EventPairPair() {
final HandlePairResult result = System.eventpairCreate();
if (result.status == ZX.OK) {
return EventPairPair._(
result.status, EventPair(result.first), EventPair(result.second));
} else {
return EventPairPair._(result.status, null, null);
}
}
```