trinetra 1.0.1
trinetra: ^1.0.1 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.
// 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));
}