MessageField constructor

const MessageField({
  1. Key? key,
  2. List<Widget>? actions,
  3. FocusNode? focusNode,
  4. TextEditingController? controller,
  5. Widget? leading,
  6. TextCapitalization? textCapitalization,
  7. TextInputAction? textInputAction,
  8. TextInputType? keyboardType,
  9. TextStyle? textStyle,
  10. InputDecoration? decoration,
  11. EdgeInsetsGeometry? textPadding,
})

Implementation

const MessageField({
  Key? key,
  this.actions,
  this.focusNode,
  this.controller,
  this.leading,
  this.textCapitalization,
  this.textInputAction,
  this.keyboardType,
  this.textStyle,
  this.decoration,
  this.textPadding,
}) : super(key: key);