D2of5Decoder.fromMap constructor

D2of5Decoder.fromMap(
  1. Map<String, dynamic> map
)

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?,
    );