LogModel constructor

LogModel({
  1. String? filePath,
  2. int? lineNumber,
  3. int? columnNumber,
  4. String? exception,
  5. String? stackTrace,
  6. String? time,
  7. String? errorFrom,
  8. String? endpoint,
  9. String? method,
  10. String? argument,
  11. String? error,
  12. String? body,
  13. String? deviceId,
  14. String? deviceType,
})

Implementation

LogModel(
    {this.filePath,
    this.lineNumber,
    this.columnNumber,
    this.exception,
    this.stackTrace,
    this.time,
    this.errorFrom,
    this.endpoint,
    this.method,
    this.argument,
    this.error,
    this.body,
    this.deviceId,
    this.deviceType});