IncludeConfig constructor

const IncludeConfig({
  1. String? $if,
  2. String? ifNot,
})

Implementation

const IncludeConfig({
  this.$if,
  this.ifNot,
}) : assert(
        $if != null || ifNot != null,
        'IncludeConfig must have either an `if` or `ifNot`',
      );