MessageBar constructor

const MessageBar({
  1. Key? key,
  2. TextEditingController? controller,
  3. FocusNode? focusNode,
  4. bool isSendEnabled = true,
  5. GestureTapCallback? onSendTap,
})

Implementation

const MessageBar({
  super.key,
  this.controller,
  this.focusNode,
  this.isSendEnabled = true,
  this.onSendTap,
});