sendMessage method
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);
}
Returns nothing, sends a message src
as a BoC to the network
Future<void> sendMessage(Message src) async {
final boc = beginCell().store(storeMessage(src)).endCell().toBoc();
await _sendBoc(boc);
}