launchPhone method

Future<bool> launchPhone()

=================== Telefon / SMS / E-mail ===================

Implementation

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