LogResponse constructor

LogResponse({
  1. required String type,
  2. required String logId,
  3. required String code,
  4. required String ipAddress,
  5. required String createdAt,
})

Implementation

LogResponse({
  required this.type,
  required this.logId,
  required this.code,
  required this.ipAddress,
  required this.createdAt,
});