Session constructor
Session({
- String? extra,
- int? client_id,
- int64? id,
- Bool? is_current,
- Bool? is_password_pending,
- Bool? can_accept_secret_chats,
- Bool? can_accept_calls,
- SessionType? type,
- int32? api_id,
- string? application_name,
- string? application_version,
- Bool? is_official_application,
- string? device_model,
- string? platform,
- string? system_version,
- int32? log_in_date,
- int32? last_active_date,
- string? ip,
- string? country,
- string? region,
Implementation
Session({
super.extra,
super.client_id,
this.id,
this.is_current,
this.is_password_pending,
this.can_accept_secret_chats,
this.can_accept_calls,
this.type,
this.api_id,
this.application_name,
this.application_version,
this.is_official_application,
this.device_model,
this.platform,
this.system_version,
this.log_in_date,
this.last_active_date,
this.ip,
this.country,
this.region,
});