match<Z> abstract method

Z match<Z>({
  1. required Z success(
    1. AutoClipboardDetectionResultSuccess
    ),
  2. required Z unknownSystem(
    1. AutoClipboardDetectionResultUnknownSystemOrNotSupported
    ),
  3. required Z linuxxclipNotFound(
    1. AutoClipboardDetectionResultLinuxXClipNotFound
    ),
})

Implementation

Z match<Z>({
  required final Z Function(AutoClipboardDetectionResultSuccess) success,
  required final Z Function(AutoClipboardDetectionResultUnknownSystemOrNotSupported) unknownSystem,
  required final Z Function(AutoClipboardDetectionResultLinuxXClipNotFound) linuxxclipNotFound,
});