KeyboardButtonCallback constructor

const KeyboardButtonCallback({
  1. required bool requiresPassword,
  2. required String text,
  3. required Uint8List data,
})

Keyboard Button Callback constructor.

Implementation

const KeyboardButtonCallback({
  required this.requiresPassword,
  required this.text,
  required this.data,
}) : super._();