cancelCvsAuthorization method
Implementation
Future<NoContent> cancelCvsAuthorization({
required String accountId,
required String orderId,
}) async {
return await invokeMethod<NoContent>(
(j) => NoContent.fromJson(j),
'cancelCvsAuthorization',
{
'env': this.env.index,
'accessToken': this.accessToken,
'accountId': accountId,
'orderId': orderId,
},
);
}