AI constructor

const AI({
  1. required String code,
  2. required String dataTitle,
  3. required AIFormatType type,
  4. int? fixLength,
  5. required String regExpString,
  6. required String description,
})

Implementation

const AI({
  required String code,
  required String dataTitle,
  required AIFormatType type,
  int? fixLength,
  required String regExpString,
  required String description,
})  : _fixLength = fixLength,
      _code = code,
      _dataTitle = dataTitle,
      _type = type,
      _regExpString = regExpString,
      _description = description;