put static method
Implementation
static Future<CatalogFractal> put({
Map<String, dynamic> filter = const {},
Map<String, dynamic> order = defaultOrder,
String source = 'event',
bool includeSubTypes = true,
int limit = 0,
bool onlyLocal = false,
}) async {
final c = await controller.put({
'filter': filter,
'order': order,
'source': source,
'mode': """
${(!includeSubTypes) ? 'noSub' : ''}
""",
'onlyLocal': onlyLocal,
'limit': limit,
'kind': 3,
});
c.synch();
return c;
}