flutter_phone_call_handler 0.0.1 copy "flutter_phone_call_handler: ^0.0.1" to clipboard
flutter_phone_call_handler: ^0.0.1 copied to clipboard

PlatformAndroid

Allow end a call from flutter

flutter_phone_call_handler #

Allow handle a call from flutter, for example, end a call.

Getting Started #

import 'package:flutter_phone_call_handler/flutter_phone_call_handler.dart';

final _flutterPhoneCallHandlerPlugin = FlutterPhoneCallHandler();

// Request permission
await _flutterPhoneCallHandlerPlugin.requestPermissions();

// End call
var success = await _flutterPhoneCallHandlerPlugin.endCall();

Android #

Required permissions:

<uses-permission android:name="android.permission.ANSWER_PHONE_CALLS" />