fromJson static method
Inherited by: ReplyMarkupForceReply ReplyMarkupInlineKeyboard ReplyMarkupRemoveKeyboard ReplyMarkupShowKeyboard
Implementation
static ReplyMarkupRemoveKeyboard? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return ReplyMarkupRemoveKeyboard(
isPersonal: (json['is_personal'] as bool?) ?? false,
);
}