DevLogModel constructor

DevLogModel({
  1. required String id,
  2. required DateTime timestamp,
  3. required String type,
  4. required String heading,
  5. required String content,
})

Implementation

DevLogModel({
  required this.id,
  required this.timestamp,
  required this.type,
  required this.heading,
  required this.content,
});