Code93Decoder.fromMap constructor
Implementation
factory Code93Decoder.fromMap(Map<String, dynamic> map) => Code93Decoder(
enabled: map['enabled'] as bool?,
length1: map['length1'] as int?,
length2: map['length2'] as int?,
redundancy: map['redundancy'] as bool?,
);