DotCodeParams class

DotCode parameters.

Constructors

DotCodeParams()
Constructor
DotCodeParams.fromJson(Map<String, dynamic> json)
Creates a DotCodeParams instance from a JSON representation.

Properties

aspectRatio double?
Height/Width ratio of 2D BarCode module.
getter/setter pair
columns int?
Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5.
getter/setter pair
eCIEncoding ECIEncodings?
Identifies ECI encoding. Used when DotCodeEncodeMode is Auto. Default value: ISO-8859-1.
getter/setter pair
encodeMode DotCodeEncodeMode?
Identifies DotCode encode mode. Default value: Auto.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
isReaderInitialization bool?
Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false.
getter/setter pair
rows int?
Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns a JSON representation of DotCodeParams.
toString() String
A string representation of this object.
override

Operators

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

Static Methods

listFromJson(List json) List<DotCodeParams>
Converts a list of JSON objects to a list of DotCodeParams instances.