fixLength property

int fixLength

Length for AI with fixed length (for other is 0)

Implementation

int get fixLength {
  if (type == AIFormatType.FIXED_LENGTH) return _fixLength ?? 0;
  if (type == AIFormatType.FIXED_LENGTH_MEASURE) return _fixLength ?? 0;
  if (type == AIFormatType.DATE) return _DATE_FIX_LENGTH;
  return 0;
}