xaCommitOnePhase method

Future<int> xaCommitOnePhase(
  1. int xaId
)
inherited

Implementation

Future<int> xaCommitOnePhase(int xaId) async {
  final r = await _sendRequest<IntResponse>(
    XaIdRequest(_nextRequestId(), RequestType.xaCommitOnePhase, xaId),
  );
  return r.value;
}