getProperty<T> method

Future<T> getProperty<T>(
  1. dynamic property
)

will send a get request for the specified property
if no id is provided this will return a promise
if an id is provided the answer will come via a 'getrequest' event containing the id and data

Implementation

Future<T> getProperty<T>(property) {
  return socket.getProperty<T>(property);
}