usersUpdate function

Future<User> usersUpdate(
  1. UsersUpdate usersUpdate
)

Implementation

Future<User> usersUpdate(UsersUpdate usersUpdate) async {
  String? response = await _clientPostRawResponse(PlurkEndpoints.usersUpdate(),
      body: usersUpdate.toBody());
  return compute(parseUser, response);
}