PaddingParams constructor

const PaddingParams({
  1. bool consistentLength = true,
  2. required int shortIdLength,
  3. dynamic paddingChar = '0',
})

Implementation

const PaddingParams({
  this.consistentLength = true,
  required this.shortIdLength,
  this.paddingChar = '0',
});