trinetra 1.0.0
trinetra: ^1.0.0 copied to clipboard
A Utility library for Flutter devlopment which contains various Custom Components for fast Devlopment, http Request custom libraries for custom backend, and many more.
example/main.dart
// Copyright (c) 2022 InducedOfficial
import 'package:trinetra/request/request.dart';
void main() {
Request.initicalize(url: "google.com", ssl: true);
Request()
.send("GET", "/", body: {}, headers: {}, queryParams: {})
.then((response) => print(response.statusCode));
}