getFeeForEncodedMessageRaw method

Future<JsonRpcContextResponse<u64?>> getFeeForEncodedMessageRaw(
  1. String message, {
  2. GetFeeForMessageConfig? config,
})

Returns the network fee that will be charged to send message.

Implementation

Future<JsonRpcContextResponse<u64?>> getFeeForEncodedMessageRaw(
  final String message, {
  final GetFeeForMessageConfig? config,
}) =>
    send(GetFeeForMessage(message, config: config));