timeToLive property
Duration
get
timeToLive
Implementation
Duration get timeToLive {
final secs = DartApi.native.jwtBuilder.createdAt_get(_ffi);
return Duration(seconds: secs);
}
set
timeToLive
(Duration value)
Implementation
set timeToLive(Duration value) {
DartApi.native.jwtBuilder.createdAt_set(_ffi, value.inSeconds);
}