copyWith method

Implementation

@override
ReplyMarkupInlineKeyboard copyWith({
  List<List<InlineKeyboardButton>>? rows,
}) =>
    ReplyMarkupInlineKeyboard(
      rows: rows ?? this.rows,
    );