beautify property

String beautify

Returns a beautified string representation of the response.

Returns a string containing a formatted representation of the response object.

Implementation

String get beautify {
  return "Response {\n"
      "\tAvailable      : $_available\n"
      "\tBackups        : $backups\n"
      "\tCancel         : $_cancel\n"
      "\tComplete       : $_complete\n"
      "\tData           : $data\n"
      "\tError          : $_error\n"
      "\tException      : $exception\n"
      "\tFailed         : $_failed\n"
      "\tFeedback       : $feedback\n"
      "\tIgnores        : $ignores\n"
      "\tInternet Error : $_internetError\n"
      "\tLoading        : $_loading\n"
      "\tMessage        : $message\n"
      "\tNullable       : $_nullable\n"
      "\tPaused         : $_paused\n"
      "\tProgress       : $progress\n"
      "\tRequest Code   : $requestCode\n"
      "\tResult         : $result\n"
      "\tSnapshot       : $snapshot\n"
      "\tStopped        : $_stopped\n"
      "\tStatus         : $status\n"
      "\tSuccessful     : $_successful\n"
      "\tTimeout        : $_timeout\n"
      "\tValid          : $_valid\n"
      "}";
}