setPhoneNumber static method

Future<void> setPhoneNumber(
  1. String phoneNo
)

Set the phoneNumber of the user

Appier.setPhoneNumber("02-8865252")

Implementation

static Future<void> setPhoneNumber(String phoneNo) async {
  await AppierFlutterPlatform.instance.setPhoneNumber(phoneNo);
}