How can I programmatically get the phone number of the device that is running my android app using Flutter?
I know we can do this easily in android studio using this syntax :
TelephonyManager tMgr = (TelephonyManager)mAppContext.getSystemService(Context.TELEPHONY_SERVICE);
String mPhoneNumber = tMgr.getLine1Number();
But how to do this using flutter ?