userStatus method

Future<UHttpClientResponse> userStatus({
  1. required Map<String, dynamic> body,
  2. void onResponse(
    1. int status,
    2. String body
    )?,
  3. void onException(
    1. String e
    )?,
})

Implementation

Future<UHttpClientResponse> userStatus({
  required Map<String, dynamic> body,
  void Function(int status, String body)? onResponse,
  void Function(String e)? onException,
}) => _post("UserStatus", body, onResponse: onResponse, onException: onException);