BashSecurityCheck constructor

const BashSecurityCheck({
  1. required String id,
  2. required String description,
  3. required bool check(
    1. String command
    ),
  4. bool blocking = true,
})

Implementation

const BashSecurityCheck({
  required this.id,
  required this.description,
  required this.check,
  this.blocking = true,
});