maybeWhen<TResult extends Object?> method

  1. @optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
  1. TResult behind(
    1. EntryRef entryRef,
    2. Set<EntryRef> entryRefs
    )?,
  2. TResult notBehind()?,
  3. required TResult orElse(),
})
inherited

Implementation

@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
  TResult Function(EntryRef entryRef, Set<EntryRef> entryRefs)? behind,
  TResult Function()? notBehind,
  required TResult orElse(),
}) =>
    throw _privateConstructorUsedError;