get method
Future<(UResponse<UProcessStepGet> ?, UEmptyResponse?, String?)>
get({})
Implementation
Future<(UResponse<UProcessStepGet>?, UEmptyResponse?, String?)> get({
required String processId,
Function(UResponse<UProcessStepGet> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) =>
_Api.call("/process/Get", <String, dynamic>{"id": processId}, _Api.one(UProcessStepGet.fromMap), _Api.empty, onOk, onError, onException);