MastodonScheduledStatusPoll constructor

const MastodonScheduledStatusPoll({
  1. List<String> options = const [],
  2. required int expiresIn,
  3. bool? multiple,
  4. bool? hideTotals,
})

Creates a MastodonScheduledStatusPoll with the given fields.

Implementation

const MastodonScheduledStatusPoll({
  this.options = const [],
  required this.expiresIn,
  this.multiple,
  this.hideTotals,
});