send method

  1. @override
void send(
  1. dynamic data
)
override

General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Implementation

@override
void send(dynamic data) async {
  try {
    await _completerSendPortInitialized.future;
    _sendPort.send(data);
  } catch (e) {}
}