mobile_number 0.0.6 copy "mobile_number: ^0.0.6" to clipboard
mobile_number: ^0.0.6 copied to clipboard

outdated

A Flutter plugin for fetching the device's mobile number

mobile_number #

This is a FLutter Plugin to get the device mobile number.

Note: It works for Android only because getting mobile number of sim card is not supported in iOS.

Note: If the mobile number is not pre-exist on sim card it will not return te phone number.

Installation #

https://pub.dev/packages/mobile_number

Add this to your package's pubspec.yaml file:

dependencies:
  mobile_number: ^0.0.5

Usage #

Get first sim card number

    final String mobileNumber = await MobileNumber.mobileNumber;
    return mobileNumber;
  }

Get List of sim cards for dual sim cards

    final List<SimCard> simCards = await MobileNumber.getSimCards;
    return simCards;
  }

alt text

98
likes
20
pub points
95%
popularity

Publisher

unverified uploader

A Flutter plugin for fetching the device's mobile number

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mobile_number