fromJson static method
Implementation
static MessageSelfDestructTypeTimer? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return MessageSelfDestructTypeTimer(
selfDestructTime: (json['self_destruct_time'] as int?) ?? 0,
);
}