stringToProxy method

ObjectPrx? stringToProxy(
  1. String s
)

Implementation

ObjectPrx? stringToProxy(String s) {
  final ref = referenceFactory.create(s, '');
  return ObjectPrx.create(ref);
}