neverShowOrSql property

bool get neverShowOrSql

True if no call was bd show (forbidden on a controller path) and no call looks like raw SQL (defense — the chokepoint cannot issue SQL by construction).

Implementation

bool get neverShowOrSql =>
    calls.every((c) => c.isEmpty || (c.first != 'show' && c.first != 'sql'));