listSnapshots method
Implementation
Future<List<Map<String, Object?>>> listSnapshots({
required final String entityType,
}) async {
final result = await _invoke('listEntitySnapshots', <String, Object?>{
'entityType': _entityType(entityType),
});
return _snapshotRows(result);
}