alertMessage function

String alertMessage(
  1. String? value, {
  2. bool isPhone = true,
})

Implementation

String alertMessage(String? value, {bool isPhone = true}) {
  if (isPhone) {
    return 'You are about to set $value as your primary phone number. Note that this is the phone number you will use to login with your PIN';
  } else {
    return 'You are about to set $value as your primary email address. Note that we will communicate with you via this email address';
  }
}