sim_data

Creator: coderz1093

Last updated:

Add to Cart

Description:

sim data

Sim plugin for Flutter #
A Flutter plugin to retrieve Sim cards data - dual sim support - only Android for now.
Installation #
Add sim_data as a dependency in your pubspec.yaml.
Make sure that your AndroidManifext.xml file includes the following permission:
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
copied to clipboard
Usage #
Before you use this plugin, you must make sure that the user has authorized access to his phone, for example with the permission_handler plugin.
You may then use the plugin:
import 'package:sim_data/sim_data.dart';

void printSimCardsData() async {
try {
SimData simData = await SimDataPlugin.getSimData();
for (var s in simData.cards) {
print('Serial number: ${s.serialNumber}');
}
} on PlatformException catch (e) {
debugPrint("error! code: ${e.code} - message: ${e.message}");
}
}

void main() => printSimCardsData();
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.