InitLogModel constructor

InitLogModel({
  1. String? type,
  2. int? time,
  3. String? content,
})

Implementation

InitLogModel({
  String? type,
  int? time,
  String? content,
}) {
  _type = type;
  _time = time;
  _content = content;
}