Gs1DatabarLimDecoder.fromMap constructor

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

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