# fluttertpc_system_boot_time **Repository Path**: talking-about-building/fluttertpc_system_boot_time ## Basic Information - **Project Name**: fluttertpc_system_boot_time - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2024-12-06 - **Last Updated**: 2024-12-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # system_boot_time A Flutter Plugin for getting system boot time. ## Getting Started Add `system_boot_time` as a dependency in your pubspec.yaml file. Just run: ```dart flutter pub add system_boot_time ``` Next, import as you need. ```dart import 'package:system_boot_time/system_boot_time.dart'; ``` And then just have fun: ```dart final second = await SystemBootTime().second(); ```