deleteUser abstract method
- @Delete.new(path: 'user/{user_id}')
- @Path.new('user_id') String userId
Implementation
@Delete(path: 'user/{user_id}')
Future<Response<DeleteUserResponse>> deleteUser(@Path('user_id') String userId);
@Delete(path: 'user/{user_id}')
Future<Response<DeleteUserResponse>> deleteUser(@Path('user_id') String userId);