socket method

int socket(
  1. int domain,
  2. int type,
  3. int protocol
)

Create a socket

Implementation

int socket(int domain, int type, int protocol) {
  return -1; // Stubbed for Dart synchronous limitations
}