setHttpPostForced method

CountlyConfig setHttpPostForced(
  1. bool isForced
)

Set to 'true' if you want HTTP POST to be used for all requests

Implementation

CountlyConfig setHttpPostForced(bool isForced) {
  _httpPostForced = isForced;
  return this;
}