getPairedPairedInstance method

PairedInstance? getPairedPairedInstance(
  1. Object instance
)

Retrieve the PairedInstance paired to instance.

Returns null if instance is not paired.

Implementation

PairedInstance? getPairedPairedInstance(Object instance) {
  final String? instanceId = instanceManager.getInstanceId(instance);
  return instanceId == null ? null : PairedInstance(instanceId);
}