PollAnswer constructor

const PollAnswer({
  1. required String text,
  2. required Uint8List option,
})

Poll Answer constructor.

Implementation

const PollAnswer({
  required this.text,
  required this.option,
}) : super._();