JwtLocation constructor

JwtLocation({
  1. String? header,
  2. String? query,
  3. String? valuePrefix,
})

Implementation

factory JwtLocation({
  $core.String? header,
  $core.String? query,
  $core.String? valuePrefix,
}) {
  final _result = create();
  if (header != null) {
    _result.header = header;
  }
  if (query != null) {
    _result.query = query;
  }
  if (valuePrefix != null) {
    _result.valuePrefix = valuePrefix;
  }
  return _result;
}