BarcodeSectionDetail.fromJson constructor

BarcodeSectionDetail.fromJson(
  1. Map json_
)

Implementation

BarcodeSectionDetail.fromJson(core.Map json_)
    : this(
        fieldSelector: json_.containsKey('fieldSelector')
            ? FieldSelector.fromJson(
                json_['fieldSelector'] as core.Map<core.String, core.dynamic>)
            : null,
      );