EncodeBarcodeParams class final

@brief The EncodeBarcodeParams class encapsulates parameters for encoding barcodes.

Inheritance
Implemented types
Available extensions

Constructors

EncodeBarcodeParams()

Properties

address → Pointer<T>

Available on T, provided by the StructAddress extension

The memory address of the underlying data.
no setter
contents ↔ Pointer<Char>
< The string to encode. Owned pointer, freed in destructor.
getter/setter pair
eccLevel ↔ int
< The error correction level of the barcode. Used for Aztec, PDF417, and QRCode only, 0-8.
getter/setter pair
format ↔ int
< The format of the barcode
getter/setter pair
hashCode → int
The hash code for this object.
no setterinherited
height ↔ int
< The height of the barcode in pixels
getter/setter pair
margin ↔ int
< The margin of the barcode
getter/setter pair
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
width ↔ int
< The width of the barcode in pixels
getter/setter pair

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

Static Methods

$allocate(Allocator $allocator, {required Pointer<Char> contents, required int width, required int height, required int format, required int margin, required int eccLevel}) → Pointer<EncodeBarcodeParams>