deleteUser method
Implementation
Future<NoContent> deleteUser({
required String userId,
}) async {
return await invokeMethod<NoContent>(
(j) => NoContent.fromJson(j),
'autogen_deleteUser',
{
'env': this.env.index,
'accessToken': this.accessToken,
'user_id': userId,
},
);
}