statusDescription property

String get statusDescription

Get response status description

Implementation

String get statusDescription {
  final responseCode = DnsResponseCode.fromValue(status);
  return responseCode?.description ?? 'Unknown status code: $status';
}