From d5c1f0da8bb7ba91c07cf80b7ade95818d21c407 Mon Sep 17 00:00:00 2001 From: Denis Andrasec Date: Mon, 19 Aug 2024 15:11:14 +0200 Subject: [PATCH] organize imports --- dart/lib/src/sentry_envelope.dart | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dart/lib/src/sentry_envelope.dart b/dart/lib/src/sentry_envelope.dart index ce27f03d12..9c02bfa8f1 100644 --- a/dart/lib/src/sentry_envelope.dart +++ b/dart/lib/src/sentry_envelope.dart @@ -1,15 +1,16 @@ import 'dart:convert'; + import 'client_reports/client_report.dart'; import 'metrics/metric.dart'; import 'protocol.dart'; -import 'sentry_item_type.dart'; -import 'sentry_options.dart'; -import 'sentry_trace_context_header.dart'; -import 'utils.dart'; import 'sentry_attachment/sentry_attachment.dart'; import 'sentry_envelope_header.dart'; import 'sentry_envelope_item.dart'; +import 'sentry_item_type.dart'; +import 'sentry_options.dart'; +import 'sentry_trace_context_header.dart'; import 'sentry_user_feedback.dart'; +import 'utils.dart'; /// Class representation of `Envelope` file. class SentryEnvelope {