property method

  1. @override
CustomProperty? property(
  1. String name
)
override

Retrieve a custom property from the event with the given name.

Implementation

@override
CustomProperty? property(String name) {
  final property = properties[name];
  return property;
}