when<TResult extends Object?> method
- @optionalTypeArgs
- required TResult account(
- SplTokenAccountDataInfo info,
- String type,
- String? accountType
- required TResult mint(
- MintAccountDataInfo info,
- String type,
- String? accountType
- required TResult unknown(
- String type
inherited
Implementation
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(
SplTokenAccountDataInfo info, String type, String? accountType)
account,
required TResult Function(
MintAccountDataInfo info, String type, String? accountType)
mint,
required TResult Function(String type) unknown,
}) =>
throw _privateConstructorUsedError;