Gs1DatabarLimDecoder.fromMap constructor
Implementation
factory Gs1DatabarLimDecoder.fromMap(Map<String, dynamic> map) => Gs1DatabarLimDecoder(
enabled: map['enabled'] as bool?,
securityLevel: map['securityLevel'] != null
? GS1LimitedSecurityLevel.fromValue(map['securityLevel'] as String)
: null,
);