addCall method

void addCall(
  1. NirikshakHttpCall call
)

Implementation

void addCall(NirikshakHttpCall call) {
  if (httpCalls.isEmpty) {
    httpCalls.add(call);
  } else {
    httpCalls.insert(0, call);
  }
}