v1UserGet method

Future<Response<UserResponseModel>> v1UserGet({
  1. String? xiApiKey,
})

Get User Info @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

Future<chopper.Response<UserResponseModel>> v1UserGet({String? xiApiKey}) {
  generatedMapping.putIfAbsent(
    UserResponseModel,
    () => UserResponseModel.fromJsonFactory,
  );

  return _v1UserGet(xiApiKey: xiApiKey?.toString());
}