stat method
Implementation
@override
Future<SafDocumentFile?> stat(String uri, bool? isDir, {bool? throws}) async {
final map = await methodChannel.invokeMapMethod<String, dynamic>('stat', {
'uri': uri,
'isDir': isDir,
'throws': throws,
});
if (map == null) {
return null;
}
return SafDocumentFile.fromMap(map);
}