inline method

KeyboardBuilder inline([
  1. bool enable = true
])

Sets the keyboard inline

 builder.inline();

 builder.inline(false);

Implementation

KeyboardBuilder inline([bool enable = true]) {
  _isInline = enable;
  return this;
}