send_message method
Sends message to the network and returns the last generated shard block of the destination account before the message was sent. It will be required later for message processing.
Implementation
Future<ResultOfSendMessage> send_message(ParamsOfSendMessage params) async {
final res =
await _tonCore.request('processing.send_message', params.toString());
return ResultOfSendMessage.fromMap(res);
}