Represents metadata for a log file. More...
Public Member Functions | |
| LogInfo (this.name, this.absolutePath, this.size, this.duration, this.date, this.numberOfCheckpoints) | |
| Default constructor. | |
Public Attributes | |
| String | name |
| The name of the log file. | |
| String | absolutePath |
| The absolute file path of the log file. | |
| int | size |
| The size of the log file in bytes. | |
| int | duration |
| The duration of the logged activity in seconds. | |
| String | date |
| The date the log file was created or last modified, in string format. | |
| int | numberOfCheckpoints |
| The number of checkpoints recorded in the log file. | |
Represents metadata for a log file.
Referenced from ResourceManager.
Definition at line 19 of file log_info.dart.
| LogInfo.LogInfo | ( | this. | name, |
| this. | absolutePath, | ||
| this. | size, | ||
| this. | duration, | ||
| this. | date, | ||
| this. | numberOfCheckpoints ) |
Default constructor.
| String LogInfo.absolutePath |
The absolute file path of the log file.
Definition at line 29 of file log_info.dart.
| String LogInfo.date |
The date the log file was created or last modified, in string format.
Definition at line 41 of file log_info.dart.
| int LogInfo.duration |
The duration of the logged activity in seconds.
Definition at line 37 of file log_info.dart.
| String LogInfo.name |
The name of the log file.
Definition at line 25 of file log_info.dart.
| int LogInfo.numberOfCheckpoints |
The number of checkpoints recorded in the log file.
Definition at line 45 of file log_info.dart.
| int LogInfo.size |
The size of the log file in bytes.
Definition at line 33 of file log_info.dart.