fromJson static method
Implementation
static InlineMessageId? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InlineMessageId(id: (json['id'] as String?) ?? '');
}
static InlineMessageId? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InlineMessageId(id: (json['id'] as String?) ?? '');
}