sendFile method

Future<void> sendFile(
  1. Uint8List src
)
inherited

Returns nothing, sends a BoC file src directly to the network

Implementation

Future<void> sendFile(Uint8List src) async {
  await _sendBoc(src);
}