onQueryCreation method

  1. @override
void onQueryCreation(
  1. QueryBase query
)
override

Called when an infinite query or query are created in the cache

Implementation

@override
void onQueryCreation(
  QueryBase<dynamic, dynamic> query,
) {
  if (!queryCreation) return;
  _log(
    _AnsiColors("[QUERY CREATED] ", colors: colors).bold.magenta.toString(),
    key: query.key,
  );
}