LogModel constructor

LogModel({
  1. String? content,
  2. String? tag,
})

Constructs a LogModel with optional content and tag.

Implementation

LogModel({this.content, this.tag}) : super(type: ModelType.log);