whatsAppUrl function

String whatsAppUrl({
  1. required String phone,
  2. required String message,
})

Implementation

String whatsAppUrl({required String phone, required String message}) =>
    'https://wa.me/$phone/?text=${Uri.parse(message)}';