checkUrlAuthMatchCode method

Future<Result<Boolean>> checkUrlAuthMatchCode({
  1. required String url,
  2. required String matchCode,
})

Check Url Auth Match Code.

ID: c9a47b0b.

Implementation

Future<Result<Boolean>> checkUrlAuthMatchCode({
  required String url,
  required String matchCode,
}) async {
  // Preparing the request.
  final request = MessagesCheckUrlAuthMatchCode(
    url: url,
    matchCode: matchCode,
  );

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<Boolean>();
}