GiphyDisplay constructor

const GiphyDisplay({
  1. Key? key,
  2. required String searchKeyword,
  3. required KeyboardConfig keyboardConfig,
  4. dynamic onGifSelected(
    1. GiphyGif
    )?,
  5. required StreamController<String> scrollStream,
})

Implementation

const GiphyDisplay({
  Key? key,
  required this.searchKeyword,
  required this.keyboardConfig,
  this.onGifSelected,
  required this.scrollStream,
}) : super(key: key);