toPhoneUri property

Uri? get toPhoneUri

Implementation

Uri? get toPhoneUri => this == null
    ? null
    : Uri.parse(this!.startsWith('tel://') ? this! : 'tel://${this!.clean}');