A Flutter Make Phone Calls App
flutter_make_phone_calls
A new Flutter Make Phone Calls application.
Getting Started
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
Do Some Configuration
- Add these lines to 
AndroidManifest.xmlundermanifest. 
<queries>
  <!-- If your app makes calls -->
  <intent>
    <action android:name="android.intent.action.DIAL" />
    <data android:scheme="tel" />
  </intent>
</queries>
- Add these lines to 
Info.plistunderdict. 
<key>LSApplicationQueriesSchemes</key>
<array>
  <string>tel</string>
</array>