readById method
Future<(UResponse<UUserResponse> ?, UEmptyResponse?, String?)>
readById({})
Implementation
Future<(UResponse<UUserResponse>?, UEmptyResponse?, String?)> readById({
required UIdParams p,
Function(UResponse<UUserResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
Function(int e)? onProgress,
}) =>
_Api.call("/user/ReadById", p.toMap(), _Api.one(UUserResponse.fromMap), _Api.empty, onOk, onError, onException, onProgress: onProgress);