launchPhone method

Future<bool> launchPhone()

Telefon araması başlatır

Implementation

Future<bool> launchPhone() async {
  if (this == null || this!.isEmpty) return false;
  final phone = this!.replaceAll(RegExp(r'[^0-9+]'), '');
  return _safeLaunch('tel:$phone');
}