Micromoment constructor

Micromoment({
  1. required String identifier,
  2. Map<String, String> textParameters = const {},
  3. Map<String, double> numericParameters = const {},
  4. Map<String, bool> booleanParameters = const {},
})

Implementation

Micromoment(
    {required this.identifier,
    this.textParameters = const {},
    this.numericParameters = const {},
    this.booleanParameters = const {}});