LogResponse constructor

LogResponse({
  1. required bool success,
  2. String? logId,
  3. String? error,
})

Implementation

LogResponse({
  required this.success,
  this.logId,
  this.error,
});