row method

Saves the current row of buttons in the general rows

Implementation

KeyboardBuilder row() {
  if (_currentRow.isEmpty) return this;
  if (_currentRow.length > 5) {
    throw RangeError('Max count of buttons at columns 5');
  }

  _rows.add(_currentRow);
  _currentRow = [];

  return this;
}