setUser method

Future<AppwinCommunityUser?> setUser({
  1. String? nickname,
  2. String? avatarUrl,
  3. String? bio,
})

Pushes the identity the host app knows to the community profile. Pushes nickname, photo and bio. See AppwinCommunity.setUser.

Implementation

Future<AppwinCommunityUser?> setUser({
  String? nickname,
  String? avatarUrl,
  String? bio,
}) {
  throw UnimplementedError('setUser() has not been implemented.');
}