verifyDesc function

String verifyDesc(
  1. String phoneNo
)

Implementation

String verifyDesc(String phoneNo) {
  final String phoneNumber = phoneNo.substring(1);
  return 'We have sent a 6 digit code to $phoneNumber. Enter the code below to proceed';
}