CallType enum

Call type enumeration Defines different types of API calls between native and Dart

Inheritance
Available extensions

Values

varGetter → const CallType

Variable getter access

const CallType('var_get')
plainApiCall → const CallType

Regular API method call

const CallType('plain_api_call')
newInstance → const CallType

Create new instance

const CallType('new_instance')
instanceMethodInvoke → const CallType

Instance method invocation

const CallType('instance_method_invoke')
instancePropertyGet → const CallType

Instance property getter

const CallType('instance_member_get')
instancePropertySet → const CallType

Instance property setter

const CallType('instance_member_set')
instanceEventListenerAdd → const CallType

Add instance event listener

const CallType('instance_event_add')
instanceEventListenerRemove → const CallType

Remove instance event listener

const CallType('instance_event_remove')
instanceEventEmit → const CallType

Emit instance event

const CallType('instance_event_emit')
instanceEventResult → const CallType

Event result callback

const CallType('instance_event_result')
callbackEmit → const CallType

Emit callback

const CallType('callback_emit')
destroyInstance → const CallType

Destroy instance

const CallType('destroy_instance')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
Native string value for the enum
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Constants

values → const List<CallType>
A constant List of the values in this enum, in order of their declaration.