withExpireAfterUnusedFor method

AuthTokenInfoBuilder withExpireAfterUnusedFor(
  1. Duration? expireAfterUnusedFor
)

Implementation

AuthTokenInfoBuilder withExpireAfterUnusedFor(
  final Duration? expireAfterUnusedFor,
) {
  this.expireAfterUnusedFor = expireAfterUnusedFor;
  return this;
}