app/lib/common/rust/http_package.dart

43 lines
1.1 KiB
Dart
Raw Normal View History

2024-02-07 19:32:36 +08:00
// This file is automatically generated, so please do not edit it.
2024-09-04 12:22:13 +08:00
// Generated by `flutter_rust_bridge`@ 2.3.0.
2024-02-07 19:32:36 +08:00
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
import 'frb_generated.dart';
import 'package:flutter_rust_bridge/flutter_rust_bridge_for_generated.dart';
class RustHttpResponse {
final int statusCode;
final Map<String, String> headers;
final String url;
final BigInt? contentLength;
2024-02-07 19:32:36 +08:00
final Uint8List? data;
const RustHttpResponse({
required this.statusCode,
required this.headers,
required this.url,
this.contentLength,
this.data,
});
@override
int get hashCode =>
statusCode.hashCode ^
headers.hashCode ^
url.hashCode ^
contentLength.hashCode ^
data.hashCode;
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is RustHttpResponse &&
runtimeType == other.runtimeType &&
statusCode == other.statusCode &&
headers == other.headers &&
url == other.url &&
contentLength == other.contentLength &&
data == other.data;
}