ManagedProperty constructor

ManagedProperty({
  1. String? key,
  2. bool? valueBool,
  3. ManagedPropertyBundle? valueBundle,
  4. List<ManagedPropertyBundle>? valueBundleArray,
  5. int? valueInteger,
  6. String? valueString,
  7. List<String>? valueStringArray,
})

Implementation

ManagedProperty({
  this.key,
  this.valueBool,
  this.valueBundle,
  this.valueBundleArray,
  this.valueInteger,
  this.valueString,
  this.valueStringArray,
});