SendButton constructor

const SendButton({
  1. Key? key,
  2. required double composerHeight,
  3. required dynamic onReceiveText(
    1. String?
    ),
  4. dynamic onPanCancel()?,
})

Implementation

const SendButton(
    {Key? key,
    required this.composerHeight,
    required this.onReceiveText,
    this.onPanCancel})
    : super(key: key);