getValue method

  1. @override
String getValue()
override

Implementation

@override
String getValue() {
  if (error != null) {
    return 'Error:$error';
  }
  return 'Uri:$uri\nMethod:$method\nParameters:${request.parameters}\nResponse:$response';
}