clone method
Clones the builder with all the settings
Implementation
KeyboardBuilder clone() {
final builder = KeyboardBuilder(isOneTime: _isOneTime, isInline: _isInline);
builder._rows = [..._rows];
builder._currentRow = [..._currentRow];
return builder;
}