authDate property

int? get authDate

Unix time when the form was opened.

Implementation

int? get authDate => _jsInitData.auth_date == null ? null : int.tryParse(_jsInitData.auth_date!);