getCaptcha method

Future<Image> getCaptcha()

Implementation

Future<Image> getCaptcha() async {
  var response = await imageRequest(
    debug: isDebug,
    function: 'GetCaptcha',
    url: '$serverUri/$authorizationApi/GetCaptcha',
    method: 'GET',
    headers: getAuthorizationHeader(),
  );

  return response;
}