get method

Future<(UResponse<UProcessStepGet>?, UEmptyResponse?, String?)> get({
  1. required String processId,
  2. dynamic onOk(
    1. UResponse<UProcessStepGet> r
    )?,
  3. dynamic onError(
    1. UEmptyResponse e
    )?,
  4. dynamic onException(
    1. String e
    )?,
})

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);