maybeMap<TResult extends Object?> method

  1. @optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
  1. TResult transfer(
    1. ParsedSystemTransferInstruction value
    )?,
  2. TResult transferChecked(
    1. ParsedSystemTransferCheckedInstruction value
    )?,
  3. TResult unsupported(
    1. ParsedSystemUnsupportedInstruction value
    )?,
  4. required TResult orElse(),
})
inherited

Implementation

@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
  TResult Function(ParsedSystemTransferInstruction value)? transfer,
  TResult Function(ParsedSystemTransferCheckedInstruction value)?
      transferChecked,
  TResult Function(ParsedSystemUnsupportedInstruction value)? unsupported,
  required TResult orElse(),
}) =>
    throw _privateConstructorUsedError;