ApiLogModel constructor
ApiLogModel({})
Implementation
ApiLogModel({
required super.id,
required super.timestamp,
required super.heading,
required super.content,
required this.method,
required this.url,
required this.headers,
this.body,
this.statusCode,
this.timings,
this.memoryUsage,
}) : super(type: 'api');