DataMatrixParams class
DataMatrix parameters.
Constructors
- DataMatrixParams()
- Constructor
-
DataMatrixParams.fromJson(Map<
String, dynamic> json) - Creates a DataMatrixParams instance from a JSON representation.
Properties
- aspectRatio ↔ double?
-
Height/Width ratio of 2D BarCode module
getter/setter pair
- columns ↔ int?
-
DEPRECATED: Will be replaced with 'DataMatrix.Version' in the next release Columns count.
getter/setter pair
- dataMatrixEcc ↔ DataMatrixEccType?
-
Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200.
getter/setter pair
- dataMatrixEncodeMode ↔ DataMatrixEncodeMode?
-
Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.Auto.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- macroCharacters ↔ MacroCharacter?
-
Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None.
getter/setter pair
- rows ↔ int?
-
DEPRECATED: Will be replaced with 'DataMatrix.Version' in the next release Rows count.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- 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
- version ↔ DataMatrixVersion?
-
Sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto.
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 DataMatrixParams.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
listFromJson(
List json) → List< DataMatrixParams> - Converts a list of JSON objects to a list of DataMatrixParams instances.