KeyboardActionsConfig constructor

const KeyboardActionsConfig({
  1. KeyboardActionsPlatform keyboardActionsPlatform = KeyboardActionsPlatform.ALL,
  2. bool nextFocus = true,
  3. List<KeyboardActionsItem>? actions,
  4. Color? keyboardBarColor,
  5. double? keyboardBarElevation,
  6. Color keyboardSeparatorColor = Colors.transparent,
  7. Widget? defaultDoneWidget,
})

Implementation

const KeyboardActionsConfig({
  this.keyboardActionsPlatform = KeyboardActionsPlatform.ALL,
  this.nextFocus = true,
  this.actions,
  this.keyboardBarColor,
  this.keyboardBarElevation,
  this.keyboardSeparatorColor = Colors.transparent,
  this.defaultDoneWidget,
});