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