dart:ffi
LongLong class
The C long long type.
Typically a signed 64-bit integer. For a guaranteed 64-bit integer, use Int64 with the C int64_t type. For an unsigned long long, use UnsignedLongLong.
The LongLong type is a native type, and should not be constructed in Dart code. It occurs only in native type signatures and as annotation on Struct and Union fields.
- Inheritance
-
- Annotations
-
- @Since('2.17')
- @AbiSpecificIntegerMapping({Abi.androidArm : Int64(), Abi.androidArm64 : Int64(), Abi.androidIA32 : Int64(), Abi.androidX64 : Int64(), Abi.fuchsiaArm64 : Int64(), Abi.fuchsiaX64 : Int64(), Abi.iosArm : Int64(), Abi.iosArm64 : Int64(), Abi.iosX64 : Int64(), Abi.linuxArm : Int64(), Abi.linuxArm64 : Int64(), Abi.linuxIA32 : Int64(), Abi.linuxX64 : Int64(), Abi.linuxRiscv32 : Int64(), Abi.linuxRiscv64 : Int64(), Abi.macosArm64 : Int64(), Abi.macosX64 : Int64(), Abi.windowsArm64 : Int64(), Abi.windowsIA32 : Int64(), Abi.windowsX64 : Int64()})
Constructors
- LongLong()
const
Properties
- hashCode → int
read-only, inherited
- The hash code for this object.
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
Methods
- noSuchMethod(Invocation invocation) → dynamic
inherited
- Invoked when a non-existent method or property is accessed.
- toString() → String
inherited
- A string representation of this object.
Operators
- operator ==(Object other) → bool
inherited
- The equality operator.