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