SendMsgBtn constructor

const SendMsgBtn({
  1. Key? key,
  2. void onTap()?,
  3. bool isDisabled = false,
  4. bool isSending = false,
  5. double size = 32,
})

The constructor for the send message button.

Implementation

const SendMsgBtn({
  super.key,
  this.onTap,
  this.isDisabled = false,
  this.isSending = false,
  this.size = 32,
});