InputBar constructor

const InputBar({
  1. Key? key,
  2. required void onSubmit(
    1. String text, {
    2. List<InputAttachment> attachments,
    }),
  3. required bool isLoading,
})

Implementation

const InputBar({super.key, required this.onSubmit, required this.isLoading});