maybeMap<TResult extends Object?> method

  1. @optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
  1. TResult static(
    1. InputProfilePhotoStatic value
    )?,
  2. TResult animated(
    1. InputProfilePhotoAnimated value
    )?,
  3. required TResult orElse(),
})

A variant of map that fallback to returning orElse.

It is equivalent to doing:

switch (sealedClass) {
  case final Subclass value:
    return ...;
  case _:
    return orElse();
}

Implementation

@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
  TResult Function(InputProfilePhotoStatic value)? static,
  TResult Function(InputProfilePhotoAnimated value)? animated,
  required TResult orElse(),
}) {
  final _that = this;
  switch (_that) {
    case InputProfilePhotoStatic() when static != null:
      return static(_that);
    case InputProfilePhotoAnimated() when animated != null:
      return animated(_that);
    case _:
      return orElse();
  }
}