vexana 5.0.3 
vexana: ^5.0.3 copied to clipboard
Manage your network layer with dio. You will be able to use it very easily network operations.
import 'package:example/json_place_holder/json_place_holder.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Material App',
      home: JsonPlaceHolder(),
    );
  }
}