AztecParams class
Aztec parameters.
Constructors
- AztecParams()
- Constructor
-
AztecParams.fromJson(Map<
String, dynamic> json) - Creates a AztecParams instance from a JSON representation.
Properties
- aspectRatio ↔ double?
-
Height/Width ratio of 2D BarCode module.
getter/setter pair
- eCIEncoding ↔ ECIEncodings?
-
Identifies ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1.
getter/setter pair
- encodeMode ↔ AztecEncodeMode?
-
Encoding mode for Aztec barcodes. Default value: Auto
getter/setter pair
- errorLevel ↔ int?
-
Level of error correction of Aztec types of barcode. Value should between 10 to 95.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- isReaderInitialization ↔ bool?
-
Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization.
getter/setter pair
- layersCount ↔ int?
-
Gets or sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto).
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- symbolMode ↔ AztecSymbolMode?
-
Aztec Symbol mode. Default value: AztecSymbolMode.Auto.
getter/setter pair
- textEncoding ↔ String?
-
DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Returns a JSON representation of AztecParams.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
listFromJson(
List json) → List< AztecParams> - Converts a list of JSON objects to a list of AztecParams instances.