getFeeForMessageRaw method
Future<JsonRpcContextResponse<u64?> >
getFeeForMessageRaw(
- Message message, {
- GetFeeForMessageConfig? config,
Returns the network fee that will be charged to send message
.
Implementation
Future<JsonRpcContextResponse<u64?>> getFeeForMessageRaw(
final Message message, {
final GetFeeForMessageConfig? config,
}) {
final String encoded = message.serialize().getString(BufferEncoding.base64);
return getFeeForEncodedMessageRaw(encoded, config: config);
}