ReadModel constructor

const ReadModel({
  1. required String id,
  2. @Default.new(ModelTimestamp()) ModelTimestamp time,
})

Implementation

const factory ReadModel({
  required String id,
  @Default(ModelTimestamp()) ModelTimestamp time,
}) = _ReadModel;