CustomTagType constructor

CustomTagType(
  1. String name, {
  2. required dynamic handler(
    1. String eventName,
    2. Map<String, dynamic>? parameters
    ),
})

Implementation

CustomTagType(
  this.name, {
  required this.handler,
});