MastodonMarker constructor

const MastodonMarker({
  1. required String lastReadId,
  2. required int version,
  3. DateTime? updatedAt,
})

Creates a MastodonMarker with the given fields.

Implementation

const MastodonMarker({
  required this.lastReadId,
  required this.version,
  this.updatedAt,
});