sendMessage method

Future<void> sendMessage(
  1. Message src
)
inherited

Returns nothing, sends a message src as a BoC to the network

Implementation

Future<void> sendMessage(Message src) async {
  final boc = beginCell().store(storeMessage(src)).endCell().toBoc();
  await _sendBoc(boc);
}