sendBtcEnd method
Implementation
@override
Future<String> sendBtcEnd({
required int walletId,
required String signedPsbt,
required bool skipSync,
}) async {
final result = await methodChannel.invokeMethod<String>('sendBtcEnd', {
'walletId': walletId,
'signedPsbt': signedPsbt,
'skipSync': skipSync,
});
return result!;
}