ParsedSplTokenInstruction class sealed

An instruction of a spl token program

Available extensions
Annotations
  • @Freezed.new(unionKey: 'type', fallbackUnion: 'generic')

Constructors

ParsedSplTokenInstruction.fromJson(Map<String, dynamic> json)
factory
ParsedSplTokenInstruction.generic({required dynamic info, required String type})
const
factory
ParsedSplTokenInstruction.transfer({required SplTokenTransferInfo info, required String type})
const
factory
ParsedSplTokenInstruction.transferChecked({required SplTokenTransferCheckedInfo info, required String type})
const
factory

Properties

copyWith → $ParsedSplTokenInstructionCopyWith<ParsedSplTokenInstruction>
Create a copy of ParsedSplTokenInstruction with the given fields replaced by the non-null parameter values.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
info → dynamic
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String
no setterinherited

Methods

map<TResult extends Object?>({required TResult transfer(ParsedSplTokenTransferInstruction value), required TResult transferChecked(ParsedSplTokenTransferCheckedInstruction value), required TResult generic(ParsedSplTokenGenericInstruction value)}) → TResult

Available on ParsedSplTokenInstruction, provided by the ParsedSplTokenInstructionPatterns extension

A switch-like method, using callbacks.
mapOrNull<TResult extends Object?>({TResult? transfer(ParsedSplTokenTransferInstruction value)?, TResult? transferChecked(ParsedSplTokenTransferCheckedInstruction value)?, TResult? generic(ParsedSplTokenGenericInstruction value)?}) → TResult?

Available on ParsedSplTokenInstruction, provided by the ParsedSplTokenInstructionPatterns extension

A variant of map that fallback to returning null.
maybeMap<TResult extends Object?>({TResult transfer(ParsedSplTokenTransferInstruction value)?, TResult transferChecked(ParsedSplTokenTransferCheckedInstruction value)?, TResult generic(ParsedSplTokenGenericInstruction value)?, required TResult orElse()}) → TResult

Available on ParsedSplTokenInstruction, provided by the ParsedSplTokenInstructionPatterns extension

A variant of map that fallback to returning orElse.
maybeWhen<TResult extends Object?>({TResult transfer(SplTokenTransferInfo info, String type)?, TResult transferChecked(SplTokenTransferCheckedInfo info, String type)?, TResult generic(dynamic info, String type)?, required TResult orElse()}) → TResult

Available on ParsedSplTokenInstruction, provided by the ParsedSplTokenInstructionPatterns extension

A variant of when that fallback to an orElse callback.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serializes this ParsedSplTokenInstruction to a JSON map.
inherited
toString() String
A string representation of this object.
inherited
when<TResult extends Object?>({required TResult transfer(SplTokenTransferInfo info, String type), required TResult transferChecked(SplTokenTransferCheckedInfo info, String type), required TResult generic(dynamic info, String type)}) → TResult

Available on ParsedSplTokenInstruction, provided by the ParsedSplTokenInstructionPatterns extension

A switch-like method, using callbacks.
whenOrNull<TResult extends Object?>({TResult? transfer(SplTokenTransferInfo info, String type)?, TResult? transferChecked(SplTokenTransferCheckedInfo info, String type)?, TResult? generic(dynamic info, String type)?}) → TResult?

Available on ParsedSplTokenInstruction, provided by the ParsedSplTokenInstructionPatterns extension

A variant of when that fallback to returning null

Operators

operator ==(Object other) bool
The equality operator.
inherited