completeProfile method
Future<(UEmptyResponse?, UEmptyResponse?, String?)>
completeProfile({
- required UAuthCompleteProfileParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UEmptyResponse?, UEmptyResponse?, String?)> completeProfile({
required UAuthCompleteProfileParams p,
Function(UEmptyResponse r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/auth/CompleteProfile", p.toMap(), _Api.empty, _Api.empty, onOk, onError, onException);