attach static method

void attach(
  1. Wire wire
)

Public Static Methods - API


Add wire object to the communication layer

Implementation

/// Add wire object to the communication layer
static void attach(Wire<dynamic> wire) {
  _COMMUNICATION_LAYER.add(wire);
}