time property

int time

Total time taken by request (in ms).

Implementation

int get time {
  // calculate from raw response
  if (this.raw != null) {
    return this.raw!['took'];
  }
  return 0;
}