stat method

Future<FileStat?> stat()

Returns a FileStat of the currently opened logs File, if any.

Implementation

Future<FileStat?> stat() async {
  return await _file?.stat();
}