Reorder imports in http_response_utils.dart

Moved the 'dart:convert' import to the top of the file for consistency with Dart import conventions.
This commit is contained in:
Ankit Mahato
2025-08-05 15:47:04 +05:30
parent c3bec79176
commit ae478c85ed

View File

@@ -1,9 +1,9 @@
import 'dart:convert';
import 'dart:typed_data';
import 'package:http/http.dart' as http;
import 'package:http_parser/http_parser.dart';
import 'package:xml/xml.dart';
import '../consts.dart';
import 'dart:convert';
String? formatBody(String? body, MediaType? mediaType) {
if (mediaType != null && body != null) {