httpStatusCode property

int? get httpStatusCode

Implementation

int? get httpStatusCode {
  final v = traceMeta?['statusCode'];
  return v is int ? v : null;
}