enqueue method
- FeedbackEntry entry
override
Appends entry to the end of the queue.
Implementation
@override
Future<void> enqueue(FeedbackEntry entry) async {
final current = await _readRaw();
current.add(entry.encode());
await _prefs.setStringList(_kQueueKey, current);
}