setDisplayName static method

Future<void> setDisplayName(
  1. String displayName
)

Subscriber attribute associated with the display name for the user

displayName Empty String or null will delete the subscriber attribute.

Implementation

static Future<void> setDisplayName(String displayName) async {
   return rc.Purchases.setDisplayName(displayName);
}