fromJson static method
Inherited by: InlineKeyboardButtonTypeBuy InlineKeyboardButtonTypeCallback InlineKeyboardButtonTypeCallbackGame InlineKeyboardButtonTypeCallbackWithPassword InlineKeyboardButtonTypeCopyText InlineKeyboardButtonTypeLoginUrl InlineKeyboardButtonTypeSwitchInline InlineKeyboardButtonTypeUrl InlineKeyboardButtonTypeUser InlineKeyboardButtonTypeWebApp
Implementation
static InlineKeyboardButtonTypeSwitchInline? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return InlineKeyboardButtonTypeSwitchInline(
query: (json['query'] as String?) ?? '',
targetChat: TargetChat.fromJson(tdMapFromJson(json['target_chat'])),
);
}