AnnotationMessage constructor

AnnotationMessage({
  1. required String id,
  2. required String message,
  3. String? target,
  4. Map<String, String> variables = const {},
})

Creates a new AnnotationMessage.

Implementation

AnnotationMessage({
  required this.id,
  required this.message,
  this.target,
  this.variables = const {},
});