# fluttertpc_system_boot_time **Repository Path**: openharmony-sig/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-11-11 - **Last Updated**: 2025-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🚨 **重要提示 | IMPORTANT** > > **⚠️ 此代码仓已归档。新地址请访问 [fluttertpc_system_boot_time](https://gitcode.com/openharmony-sig/fluttertpc_system_boot_time)。| ⚠️ This repository has been archived. For the new address, please visit [fluttertpc_system_boot_time](https://gitcode.com/openharmony-sig/fluttertpc_system_boot_time).** > --- > # 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(); ```