PreparedKeyboardButton constructor

const PreparedKeyboardButton({
  1. @JsonKey.new(name: 'id') required String id,
})

Creates a PreparedKeyboardButton object.

Implementation

const factory PreparedKeyboardButton({
  /// Unique identifier of the keyboard button
  @JsonKey(name: 'id') required String id,
}) = _PreparedKeyboardButton;