setName static method

Future<void> setName(
  1. String name
)

Set the name of the user

Appier.setName("Gary.Wu")

Implementation

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