encodeInternalMessage function
Returns base-64 encoded Message or throws error
Implementation
Future<String> encodeInternalMessage({
required Address dst,
required bool bounce,
required BigInt amount,
Address? src,
String? stateInit,
String? body,
bool? bounced,
}) async {
return createLib().encodeInternalMessage(
dst: dst.address,
src: src?.address,
body: body,
stateInit: stateInit,
bounced: bounced,
bounce: bounce,
amount: amount.toString(),
);
}