ConsentExpiry constructor

ConsentExpiry(
  1. int time,
  2. TimeUnit unit
)

Implementation

ConsentExpiry(int time, TimeUnit unit) {
  this.time = time;
  this.unit = unit;
}