hasPermission method
Checks whether the READ_PHONE_STATE Permission is granted
Note:
- Call this function before the
getSimCardsfunction to ensure the permission is granted
Implementation
@override
Future<bool> hasPermission() async {
bool? hasPermission =
await methodChannel.invokeMethod<bool>('hasPermission');
return hasPermission ?? false;
}