TokenFormatConfig constructor

TokenFormatConfig({
  1. String headerKey = 'Authorization',
  2. String? prefix,
  3. bool useSpaceAfterPrefix = true,
})

Implementation

TokenFormatConfig({
  this.headerKey = 'Authorization',
  this.prefix,
  this.useSpaceAfterPrefix = true,
});