StateMessageProperty constructor

StateMessageProperty({
  1. required String property,
  2. required String value,
  3. required String valueType,
  4. String? regex,
})

Implementation

StateMessageProperty({
  required this.property,
  required this.value,
  required this.valueType,
  this.regex,
});