untilDateTime property
DateTime?
get
untilDateTime
Date when restrictions will be lifted for this user; unix time. If 0, then the user is restricted forever
You can also use untilDate to get the date as an int object
Note: This returns null if the restriction is forever. You can check if the restriction is forever by isForever
Implementation
DateTime? get untilDateTime {
if (isForever) return null;
return untilDate.toDateTime();
}