updateProfile static method

Future<User> updateProfile(
  1. String nickname,
  2. String avatar,
  3. String description
)

Implementation

static Future<User> updateProfile(
    String nickname, String avatar, String description) async {
  return BytedeskUserHttpApi().updateProfile(nickname, avatar, description);
}