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