JFullInfo: Just An Amazing Full Hardware, System, Sim & Application Information Plugin For Android , Windows & Linux Devices.
- Get Full Device Information
- Get Full Android Information
- Get Full Windows Information
- Get Full Linux Information
- Get Full SIM Card Information
- Get Full Application Information
- Get All Information
To Use jfullinfo
First:
To Use getSimInformation
Method Add to AndroidManifest.xml
this Permission:
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
final _jFullInfo = JFullInfo();
Get Hardware Information:
Future<JHardwareInfo> getHardwareInfo()async{
final value = await _jFullInfo.getHardwareInformation();
return value;
}
Get Android Information:
Future<JAndroidInfo> getAndroidInfo()async{
final value = await _jFullInfo.getAndroidInformation();
return value;
}
Get Application Information:
Future<JApplicationInfo> getApplicationInfo()async{
final value = await _jFullInfo.getApplicationInformation();
return value;
}
Get JSimInfo Information:
Future<List<JSimInfo>> getSimInfo()async{
final value = await _jFullInfo.getSimInformation();
return value;
}
Get All Information:
Future<JInfoModel> getAllInfo()async{
final value = await _jFullInfo.getAllInformation();
return value;
}
Provided By Just Codes Developers