ConditionalOnProperty constructor

const ConditionalOnProperty({
  1. required String name,
  2. String havingValue = 'true',
  3. bool matchIfMissing = false,
})

Implementation

const ConditionalOnProperty({
  required this.name,
  this.havingValue = 'true',
  this.matchIfMissing = false,
});