echo method
Future<(UResponse<UEchoResponse> ?, UEmptyResponse?, String?)>
echo({
- required UBaseParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UEchoResponse>?, UEmptyResponse?, String?)> echo({
required UBaseParams p,
Function(UResponse<UEchoResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/ChargeInternet/Echo", p.toMap(), _Api.one(UEchoResponse.fromMap), _Api.empty, onOk, onError, onException);